Bug in g_hash_delete
"Casey T. Deccio" <[email protected]>
| Newsgroups | gmane.network.nocat |
|---|---|
| Organization | Sandia National Laboratories |
| Message-ID | <[email protected]> |
In the attached patch, the following bug was fixed: the values were dereferenced one too many times, and the program seg faulted. Casey _______________________________________________ NoCat mailing list [email protected] http://lists.nocat.net/mailman/listinfo/nocat
diff.txt
(text/plain, 138 B)
54,55c54,55 < kk = ((gchar *) k); < vv = ((gchar *) v); --- > kk = *((gchar **) k); > vv = *((gchar **) v);