Browse Source

common: Remove out of bounds and erroenous array access

merge-requests/20/head
Mark Roszko 6 years ago
committed by Ian McInerney
parent
commit
bf32122134
  1. 2
      common/common.cpp

2
common/common.cpp

@ -426,7 +426,7 @@ wxString KIwxExpandEnvVars(const wxString& str)
if( !expanded ) if( !expanded )
strResult << (wxChar)bracket; strResult << (wxChar)bracket;
str_m = str[++m];
m++;
} }
} }

Loading…
Cancel
Save