php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #57487 Windows Crash on Exceptions
Submitted: 2007-01-20 09:21 UTC Modified: 2017-04-01 21:54 UTC
From: jean-pascal at online dot de Assigned:
Status: Wont fix Package: WinBinder (PECL)
PHP Version: 5.1.0 OS: WIN32
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:
15 - 12 = ?
Subscribe to this entry?

 
 [2007-01-20 09:21 UTC] jean-pascal at online dot de
Description:
------------
Hi Folks,

first I just want to say that you did good work with WinBinder! Respect!

So, but there's still a little Problem. When i gonna try
to throw an exception like here:

try {
    // creating windows normal way....

    wb_main_loop();
}
catch(Exception $e){
    // message box for $e->getMessage() here...
}

...the CLI Windows process gonna crash. 
Do you think that you can find a fix for this? Or is my
Code the Problem?

Greets,
Jean.

Reproduce code:
---------------
Heres the Code without Includes (theres no php error for sure)

### MAIN BLOCK
try {
	// hauptfenster erzeugen.
	freelancer_wb_create_window(null, 'main', 'FreeLancer 0.2', ResizableWindow, null, null, 800, 400);
	
	// main loop
	wb_main_loop();
}
catch(Exception $e){
	wb_message_box(null, $e->getMessage(), "FreeLancer Ausnahme", WBC_WARNING);
	file_put_contents(FREELANCER_DIR_ROOT . 'last_crash.txt', $e);
	//exit(1);
}

Expected result:
----------------
An WIN32 Crash (exception)

Actual result:
--------------
Ill really tried to find a way to copy the backtrace, but i failed. When you know a way to copy that text let me know it!

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2017-04-01 21:54 UTC] tpunt@php.net
-Status: Open +Status: Wont fix
 [2017-04-01 21:54 UTC] tpunt@php.net
Due to this extension not seeing any activity since 2010, this issue will not be fixed. We are therefore closing this now.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 22:01:30 2024 UTC