Fix a long date memory leak in webserver.c:StrStr().
(cherry picked from commit bf1450bf81f2a98d89950db0df84e5ae9e99b824)
This commit is contained in:
parent
77b96765b9
commit
b67c321869
@ -221,6 +221,10 @@ Version 1.8.0
|
||||
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
|
||||
|
@ -824,12 +824,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 );
|
||||
|
Loading…
x
Reference in New Issue
Block a user