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:
Nick Treleaven 2010-09-09 17:04:09 +00:00
parent 9c527a8063
commit 877f2e30bb

View File

@ -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')
{