finally fix annoying null safety errors on shutdown

SVN revision: 75853
This commit is contained in:
Mike Blumenkrantz 2012-08-30 08:44:00 +00:00
parent 9dec464cfb
commit d1b1e0be06
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ _e_thumb_hash_del(int objid)
char buf[32]; char buf[32];
snprintf(buf, sizeof(buf), "%i", objid); snprintf(buf, sizeof(buf), "%i", objid);
eina_hash_del(_thumbs, buf, NULL); if (_thumbs) eina_hash_del(_thumbs, buf, NULL);
if ((!_thumbs) && (!_thumbnailers)) _objid = 0; if ((!_thumbs) && (!_thumbnailers)) _objid = 0;
} }