Bugs item #1803291, was opened at 2007-09-27 07:57
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=462816&aid=1803291&group_id=51305
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: any
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Langhammer (langhammer909)
Assigned to: Nobody/Anonymous (nobody)
Summary: wxScintilla 1.69.2 crash on Win64
Initial Comment:
Using wxScintilla with pointer definitions outside the 32bit bound cause a crash. The solution is to use uptr_t, sptr_t instead of ulong and long for WndProc, DefWndProc, wxScintilla::SendMsg and all type conversion. For example:
SendMsg(...,...,(long)(const char*)buf);
should be
SendMsg(...,...,(sptr_t)(const char*)buf);
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=462816&aid=1803291&group_id=51305
|