Comment 2 for bug 1470109

Revision history for this message
James Henstridge (jamesh) wrote :

Here's the relevant Gallery-app method where the crash is occurring:

http://bazaar.launchpad.net/~phablet-team/gallery-app/trunk/view/head:/src/photoeditor/photo-metadata.cpp#L114

Unless there are some missing frames due to lack of debug info, it's from one of the two lines like:

            result->m_keysPresent.insert(QString(i->key().c_str()));

It's not clear what would cause that to crash though: the data is coming from a std::string, so should be safe. Ideally it'd be using QString::fromStdString(), but I wouldn't expect that to make a difference.