1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 01:27:28 +00:00

Fix memory leak.

This commit is contained in:
Josh Elsasser 2007-04-17 05:08:45 +00:00
parent 19c4640dbd
commit ee01a4ac95

View file

@ -429,6 +429,7 @@ infoupdate( struct infowind * iw, int force )
g_free( path ); g_free( path );
return; return;
} }
g_free( path );
gtk_tree_model_get( iw->model, &iter, MC_TRACKER, &track, gtk_tree_model_get( iw->model, &iter, MC_TRACKER, &track,
MC_SEED, &seed, MC_LEECH, &leech, MC_DONE, &done, MC_SEED, &seed, MC_LEECH, &leech, MC_DONE, &done,
MC_DOWN, &down, MC_UP, &up, MC_LEFT, &left, -1 ); MC_DOWN, &down, MC_UP, &up, MC_LEFT, &left, -1 );