Code review comment for lp:~rainct/nautilus/nautilus-zg

Revision history for this message
Mikkel Kamstrup Erlandsen (kamstrup) wrote :

180 + gboolean *done;
181 + g_hash_table_iter_init (&iter, job->debuting_files);
182 + while (g_hash_table_iter_next (&iter, (void **) &file, (void **) &done)) {

Woopsiedaisy... This looks like a stackoverflow on 64 bit... A pointer to a pointer to a gboolean. I think you must declare 'done' without the asterisk ;-)

You have this error one other place as well.

review: Needs Fixing

« Back to merge proposal