summaryrefslogtreecommitdiff
path: root/php/src
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2003-08-25 22:26:00 +0000
committerMark Spruiell <mes@zeroc.com>2003-08-25 22:26:00 +0000
commitc6194f0bd22988b0591322b61fb0f29d75c4b1cc (patch)
treee78ca0f4ba0c8ed8a5ca3a656f6d67fc043a4fa6 /php/src
parentCC 5.3 fix (diff)
downloadice-c6194f0bd22988b0591322b61fb0f29d75c4b1cc.tar.bz2
ice-c6194f0bd22988b0591322b61fb0f29d75c4b1cc.tar.xz
ice-c6194f0bd22988b0591322b61fb0f29d75c4b1cc.zip
bug fix
Diffstat (limited to 'php/src')
-rw-r--r--php/src/ice/ice.cpp6
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;
}