Fix a long date memory leak in webserver.c:StrStr().

This commit is contained in:
Marcelo Roberto Jimenez 2010-10-20 00:29:08 -02:00
parent 56b9c75056
commit bf1450bf81
2 changed files with 10 additions and 6 deletions

View File

@ -2,6 +2,10 @@
Version 1.6.8
*******************************************************************************
2010-10-20 Marcelo Roberto Jimenez <mroberto(at)users.sourceforge.net>
Fix a long date memory leak in webserver.c:StrStr().
2010-10-19 Marcelo Roberto Jimenez <mroberto(at)users.sourceforge.net>
Bug fix in select of miniserver.c

View File

@ -820,12 +820,12 @@ StrStr( char *S1,
ToUpperCase( Str1 );
ToUpperCase( Str2 );
Ptr = strstr( Str1, Str2 );
if( Ptr == NULL )
return NULL;
Pos = Ptr - Str1;
Ret = S1 + Pos;
if( Ptr == NULL ) {
Ret = NULL;
} else {
Pos = Ptr - Str1;
Ret = S1 + Pos;
}
free( Str1 );
free( Str2 );