1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 02:02:32 +01:00

Fixed memory leak (related to new implementation of empty strings)

This commit is contained in:
Dmitry Stogov
2004-07-19 11:38:40 +00:00
parent 0d002664fb
commit e35bc2e2b4

View File

@@ -2035,8 +2035,6 @@ static void do_soap_call(zval* this_ptr,
sdlPtr old_sdl = NULL;
sdlFunctionPtr fn;
xmlDocPtr request = NULL;
char *buffer;
int len;
int ret = FALSE;
int soap_version;
zval response;
@@ -2603,8 +2601,6 @@ static sdlFunctionPtr deserialize_function_call(sdlPtr sdl, xmlDocPtr request, c
xmlAttrPtr attr;
sdlFunctionPtr function;
ZVAL_EMPTY_STRING(function_name);
/* Get <Envelope> element */
env = NULL;
trav = request->children;