View Single Post
  #8  
Old 12-04-2012, 11:19 PM
lerxst2112
Demi-God
 
Join Date: Aug 2010
Posts: 1,742
Default

Ok, there's something wrong with your items database. If I had to guess I'd say one of the columns is NULL where it is using atoi to extract a number from a string.

Run it under gdb again and let it crash.
Type up until the SharedDatabase::DBLoadItems frame is selected.
Type list and hopefully it will show you the line in the source code where it crashed so you can tell what column it is.
You might be able to figure out exactly which item it is by typing print item, print item.Name, or print item.ID. That's assuming that those were parsed successfully before the crash happened.

It's been a while since I used gdb every day, so I might be a little fuzzy on the commands, but hopefully this will help you narrow it down a bit.
Reply With Quote