diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-08-25 22:26:00 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-08-25 22:26:00 +0000 |
commit | c6194f0bd22988b0591322b61fb0f29d75c4b1cc (patch) | |
tree | e78ca0f4ba0c8ed8a5ca3a656f6d67fc043a4fa6 /php/src | |
parent | CC 5.3 fix (diff) | |
download | ice-c6194f0bd22988b0591322b61fb0f29d75c4b1cc.tar.bz2 ice-c6194f0bd22988b0591322b61fb0f29d75c4b1cc.tar.xz ice-c6194f0bd22988b0591322b61fb0f29d75c4b1cc.zip |
bug fix
Diffstat (limited to 'php/src')
-rw-r--r-- | php/src/ice/ice.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/php/src/ice/ice.cpp b/php/src/ice/ice.cpp index 06546511cc7..feda3b905bf 100644 --- a/php/src/ice/ice.cpp +++ b/php/src/ice/ice.cpp @@ -111,6 +111,9 @@ ZEND_MSHUTDOWN_FUNCTION(ice) status = FAILURE; } + delete static_cast<MarshalerMap*>(ICE_G(marshalerMap)); + delete static_cast<Ice::PropertiesPtr*>(ICE_G(properties)); + return status; } @@ -131,9 +134,6 @@ ZEND_RINIT_FUNCTION(ice) ZEND_RSHUTDOWN_FUNCTION(ice) { - delete static_cast<MarshalerMap*>(ICE_G(marshalerMap)); - delete static_cast<Ice::PropertiesPtr*>(ICE_G(properties)); - return SUCCESS; } |