GNOME Bugzilla – Bug 658806
sign error in string hash implementation
Last modified: 2011-09-12 12:16:25 UTC
static guint32 djb_hash (const gchar *key) Takes an argument of undefined signedness and uses it as is, this is broken for compilers that treat "char" as signed (which is legal).
ah! Sorry, Alex. I'd forgotten about this.