]> granicus.if.org Git - php/commitdiff
- Bug 45392 was never fixed in PHP_5_2
authorJani Taskinen <jani@php.net>
Thu, 7 May 2009 13:45:48 +0000 (13:45 +0000)
committerJani Taskinen <jani@php.net>
Thu, 7 May 2009 13:45:48 +0000 (13:45 +0000)
NEWS
tests/lang/bug45392.phpt [deleted file]

diff --git a/NEWS b/NEWS
index 49180b97fbd3c2c83e2923221290a7d9c755359f..e2f7b56c1dea761324590b93fb908b3d11fe3bb2 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -374,7 +374,6 @@ PHP                                                                        NEWS
   (Kalle, oleg dot grenrus at dynamoid dot com)
 - Fixed bug #45405 (snmp extension memory leak).
   (Federico Cuello, Rodrigo Campos)
-- Fixed bug #45392 (ob_start()/ob_end_clean() and memory_limit). (Arnaud)
 - Fixed bug #45382 (timeout bug in stream_socket_enable_crypto). (Ilia)
 - Fixed bug #45373 (php crash on query with errors in params). (Felipe)
 - Fixed bug #45352 (Segmentation fault because of tick function on second
diff --git a/tests/lang/bug45392.phpt b/tests/lang/bug45392.phpt
deleted file mode 100644 (file)
index 2fec5e4..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
---TEST--
-Bug #45392 (ob_start()/ob_end_clean() and memory_limit)
---INI--
-display_errors=stderr
---FILE--
-<?php
-echo __LINE__ . "\n";
-ini_set('memory_limit', 100);
-ob_start(NULL, 10);
-echo __LINE__ ."\n";
-ob_start();
-$i = 0;
-while($i++ < 5000)  {
-  echo str_repeat("may not be displayed ", 42);
-}
-ob_end_flush();
-ob_end_clean();
-?>
---EXPECTF--
-2
-Fatal error: Allowed memory size of %d bytes exhausted%s