bug67314.phpt 400 B

1234567891011121314151617181920212223
  1. --TEST--
  2. Bug #67314 (Segmentation fault in gc_remove_zval_from_buffer)
  3. --FILE--
  4. <?php
  5. function crash()
  6. {
  7. $notDefined[$i] = 'test';
  8. }
  9. function error_handler() { return false; }
  10. set_error_handler('error_handler');
  11. crash();
  12. echo "made it once\n";
  13. crash();
  14. echo "ok\n";
  15. ?>
  16. --EXPECTF--
  17. Warning: Undefined variable $i in %s on line %d
  18. made it once
  19. Warning: Undefined variable $i in %s on line %d
  20. ok