|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests |
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 22:00:01 2025 UTC |
Description: ------------ When initializing stomp without a username it will segfault. See test script Test script: --------------- <?php function mainAction() { /* connection */ try { $stomp = new \Stomp('tcp://localhost:61613'); } catch(\StompException $e) { die('Connection failed: ' . $e->getMessage()); } var_dump($stomp); } mainAction(); ?> Expected result: ---------------- Should not segfault