1
0
Fork 0

Avoid leaving the event stack in a dirty state if an event listener throws, fixes #9846

pull/9873/head
Jordi Boggiano 2021-05-04 16:18:38 +02:00
parent a844fce23e
commit 37f4f531d0
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 127 additions and 121 deletions

View File

@ -157,6 +157,7 @@ class EventDispatcher
$this->pushEvent($event); $this->pushEvent($event);
try {
$returnMax = 0; $returnMax = 0;
foreach ($listeners as $callable) { foreach ($listeners as $callable) {
$return = 0; $return = 0;
@ -294,6 +295,11 @@ class EventDispatcher
break; break;
} }
} }
} catch (\Exception $e) {
$this->popEvent();
throw $e;
}
$this->popEvent(); $this->popEvent();