]> git.saurik.com Git - wxWidgets.git/commit
Fix out of bounds string access in wxMSW wxDirDialog.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 19 Feb 2011 00:30:32 +0000 (00:30 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 19 Feb 2011 00:30:32 +0000 (00:30 +0000)
commit359cde15e07bd684c9175b51c04ab02c9ee40745
tree3658ae53c128a0429cdb00a33bed17f27eb336c4
parentca746004af612fcebb72adc28df0e33b1bf7ac63
Fix out of bounds string access in wxMSW wxDirDialog.

Using the initial directory of "/" (or "\\" or in fact any string consisting
solely of slashes and backslashes) resulted in a crash as the code incorrectly
tried to read the character before the beginning of the string.

Fix this by checking that the string is not empty before using s.end()-1
iterator.

Closes #12946.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66961 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
src/msw/dirdlg.cpp