Unusual std::map runtime error - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T09:57:30Z http://stackoverflow.com/feeds/question/1041099 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1041099/unusual-stdmap-runtime-error 0 Unusual std::map runtime error Steve Healy http://stackoverflow.com/users/0 2009-06-24T21:27:05Z 2009-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&lt;std::string, unsigned int&gt; textures; </code></pre> <p>In my image loading code, I have the following snippet.</p> <pre><code>unsigned int id; glGenTextures(1, &amp;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&amp; _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-&gt;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#1041123 1 Answer by Mark Ransom for Unusual std::map runtime error Mark Ransom http://stackoverflow.com/users/5987 2009-06-24T21:33:26Z 2009-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#1041154 1 Answer by Neil Butterworth for Unusual std::map runtime error Neil Butterworth http://stackoverflow.com/users/69307 2009-06-24T21:41:07Z 2009-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>