We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aab323 commit 253b09aCopy full SHA for 253b09a
source/plugins/bytes/bytesPlugin.cpp
@@ -150,10 +150,10 @@ int BytesPlugin::version(IDAM_PLUGIN_INTERFACE* plugin_interface)
150
int bitshift = 24;
151
for (std::size_t i = 1; i < r_matches.size(); ++i)
152
{
153
+ std::ssub_match sub_match = r_matches[i];
154
+ std::string token = sub_match.str();
155
if (i !=4 and !token.empty() and bitshift >=0)
156
- std::ssub_match sub_match = r_matches[i];
- std::string token = sub_match.str();
157
encoded_version |= (unsigned int) std::stoi(token) << bitshift;
158
bitshift -= 8;
159
}
0 commit comments