From: Zeev Suraski Date: Fri, 26 Nov 1999 18:37:06 +0000 (+0000) Subject: This should get the file to close properly X-Git-Tag: PRE_RETURN_REF_PATCH~228 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b53bc488470008ca5ab39b81bce2d8c53647db11;p=php This should get the file to close properly --- diff --git a/Zend/zend-scanner.l b/Zend/zend-scanner.l index d08b1864dc..9cbe91ecae 100644 --- a/Zend/zend-scanner.l +++ b/Zend/zend-scanner.l @@ -186,7 +186,7 @@ BEGIN_EXTERN_C() ZEND_API void zend_open_file_dtor(void *f) { #ifdef ZTS - delete *((istream **) f); + delete *((ifstream **) f); #else fclose(*((FILE **) f)); #endif