# HG changeset patch # User nadvornik # Date 1251500945 0 # Node ID 67145eade0005d838eb470219e3d176961b377b0 # Parent 672ee190869edfde45fe59102066902e5866d0ba fixed vd_notify_cb leak diff -r 672ee190869e -r 67145eade000 src/filedata.c --- a/src/filedata.c Fri Aug 28 21:01:29 2009 +0000 +++ b/src/filedata.c Fri Aug 28 23:09:05 2009 +0000 @@ -2549,6 +2549,19 @@ gboolean file_data_register_notify_func(FileDataNotifyFunc func, gpointer data, NotifyPriority priority) { NotifyData *nd; + GList *work = notify_func_list; + + while (work) + { + NotifyData *nd = (NotifyData *)work->data; + + if (nd->func == func && nd->data == data) + { + g_warning("Notify func already registered"); + return FALSE; + } + work = work->next; + } nd = g_new(NotifyData, 1); nd->func = func; @@ -2579,6 +2592,7 @@ work = work->next; } + g_warning("Notify func not found"); return FALSE; } diff -r 672ee190869e -r 67145eade000 src/view_dir.c --- a/src/view_dir.c Fri Aug 28 21:01:29 2009 +0000 +++ b/src/view_dir.c Fri Aug 28 23:09:05 2009 +0000 @@ -126,9 +126,10 @@ g_signal_connect(G_OBJECT(vd->view), "button_release_event", G_CALLBACK(vd_release_cb), vd); - if (dir_fd) vd_set_fd(vd, dir_fd); + file_data_register_notify_func(vd_notify_cb, vd, NOTIFY_PRIORITY_HIGH); - file_data_register_notify_func(vd_notify_cb, vd, NOTIFY_PRIORITY_HIGH); + /* vd_set_fd expects that vd_notify_cb is already registered */ + if (dir_fd) vd_set_fd(vd, dir_fd); gtk_widget_show(vd->view);