diff options
author | Wez Furlong <wez@php.net> | 2003-03-04 23:01:24 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-03-04 23:01:24 +0000 |
commit | 8e5aaa0e7cb6b79f3459f79bc4aa6bf64ac593e4 (patch) | |
tree | a9bb1b7f39252223c850690215700244efea2719 /ext/soap/php_packet_soap.c | |
parent | 6efd9ea5c4f5d1d849bc5885050b87d0bf2cff10 (diff) | |
download | php-git-8e5aaa0e7cb6b79f3459f79bc4aa6bf64ac593e4.tar.gz |
Miscellaneous compilation warning, coding standards, build related,
memory leak and segfault related fixes.
The simple soap client/server code examples now run without leaking or
segfaulting.
Diffstat (limited to 'ext/soap/php_packet_soap.c')
-rw-r--r-- | ext/soap/php_packet_soap.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/soap/php_packet_soap.c b/ext/soap/php_packet_soap.c index 104040fa9f..5411c31ee9 100644 --- a/ext/soap/php_packet_soap.c +++ b/ext/soap/php_packet_soap.c @@ -5,7 +5,6 @@ int parse_packet_soap(zval *this_ptr, char *buffer, int buffer_size, sdlFunction xmlDocPtr response; xmlNodePtr trav, trav2, env, body, resp, cur, fault; zval **tmp_ret; -/* TSRMLS_FETCH();*/ response = xmlParseMemory(buffer, buffer_size); xmlCleanupParser(); |