--- nono/wx/wxdumpmonitor.cpp 2026/04/29 17:04:39 1.1.1.5 +++ nono/wx/wxdumpmonitor.cpp 2026/04/29 17:04:45 1.1.1.6 @@ -114,8 +114,7 @@ WXMemdumpWindow::OnTextEnter(wxCommandEv { // 入力文字列(16進文字列)を数値に変換 const wxString& wstr = event.GetString(); - const char *cstr = (const char *)wstr.mb_str(); - uint32 val = strtoul(cstr, NULL, 16); + uint32 val = strtoul((const char *)wstr.mb_str(), NULL, 16); // 16 に整列 val &= ~15;