Unusual std::map runtime error - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T09:57:30Zhttp://stackoverflow.com/feeds/question/1041099http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1041099/unusual-stdmap-runtime-error0Unusual std::map runtime errorSteve Healyhttp://stackoverflow.com/users/02009-06-24T21:27:05Z2009-06-24T21:41:07Z
<p>I'm hacking together an editor for a game I'm working on and as part of that editor, I need to have textures, obviously. I've created a std::map variable as so,</p>
<pre><code>std::map<std::string, unsigned int> textures;
</code></pre>
<p>In my image loading code, I have the following snippet.</p>
<pre><code>unsigned int id;
glGenTextures(1, &id);
glBindTexture(GL_TEXTURE_2D, id);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, imageWidth, imageHeight, 0, GL_RGB, GL_UNSIGNED_BYTE, imageData);
glBindTexture(GL_TEXTURE_2D, 0);
textures[filename] = id;
</code></pre>
<p>Now for some reason, I get a runtime error after attempting to use the above code. An access violation error, that, when debugged, points me to the std::map code itself, specifically, this portion:</p>
<pre><code>_Nodeptr _Lbound(const key_type& _Keyval) const
{ // find leftmost node not less than _Keyval
_Nodeptr _Pnode = _Root(); // ** this is the highlighted line **
_Nodeptr _Wherenode = _Myhead; // end() if search fails
while (!_Isnil(_Pnode))
if (_DEBUG_LT_PRED(this->comp, _Key(_Pnode), _Keyval))
_Pnode = _Right(_Pnode); // descend right subtree
else
{ // _Pnode not less than _Keyval, remember it
_Wherenode = _Pnode;
_Pnode = _Left(_Pnode); // descend left subtree
}
return (_Wherenode); // return best remembered candidate
}
</code></pre>
<p>I'm only making one call to my image loading function just to test the system. I checked the variables and both the filename and id variables are correct. Any ideas as far as to what could be causing the runtime crash?</p>
http://stackoverflow.com/questions/1041099/unusual-stdmap-runtime-error/1041123#10411231Answer by Mark Ransom for Unusual std::map runtime errorMark Ransomhttp://stackoverflow.com/users/59872009-06-24T21:33:26Z2009-06-24T21:33:26Z<p>It seems like the map hasn't been constructed properly. The order of initialization is probably wrong. Is the map a static or global variable? Is your code part of a static object?</p>
http://stackoverflow.com/questions/1041099/unusual-stdmap-runtime-error/1041154#10411541Answer by Neil Butterworth for Unusual std::map runtime errorNeil Butterworthhttp://stackoverflow.com/users/693072009-06-24T21:41:07Z2009-06-24T21:41:07Z<p>Whenever I see code that uses a map like this:</p>
<pre><code> textures[filename] = id;
</code></pre>
<p>I go "oh-oh". This is because it is not clear what the code does it might:</p>
<ul>
<li>create a new empty entry indexed by filename and replace its value with id</li>
<li>replace an existing value with id</li>
</ul>
<p>To avoid not knowing what is going on, I have a very simple rule - I never use <code>operator[]</code> for maps.</p>