Fix useless Assert.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5219 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
9c527a8063
commit
877f2e30bb
@ -115,12 +115,12 @@ static char* nextFileArg (FILE* const fp)
|
||||
static char* nextFileLine (FILE* const fp)
|
||||
{
|
||||
char* result = NULL;
|
||||
Assert (fp != NULL);
|
||||
if (! feof (fp))
|
||||
{
|
||||
vString* vs = vStringNew ();
|
||||
int c;
|
||||
|
||||
Assert (fp != NULL);
|
||||
c = fgetc (fp);
|
||||
while (c != EOF && c != '\n')
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user