php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #76996 Stomp segfaults when no username provided
Submitted: 2018-10-10 18:39 UTC Modified: -
Votes:2
Avg. Score:3.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:1 (100.0%)
Same OS:1 (100.0%)
From: nsossonko at hotmail dot com Assigned:
Status: Open Package: stomp (PECL)
PHP Version: 7.0.32 OS: Windows 10
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
35 - 22 = ?
Subscribe to this entry?

 
 [2018-10-10 18:39 UTC] nsossonko at hotmail dot com
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


Patches

Add a Patch

Pull Requests

Add a Pull Request

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 01:01:30 2024 UTC