GNOME Bugzilla – Bug 342382
Memory leaks in e-name-selector-entry.c
Last modified: 2013-09-14 16:49:51 UTC
Please describe the problem: Memory leaks in e-name-selector-entry.c Steps to reproduce: 1. 2. 3. Actual results: Expected results: Does this happen every time? Other information:
Created attachment 65872 [details] [review] patch
+ ENameSelectorEntry *name_selector_entry = E_NAME_SELECTOR_ENTRY (object); + + if (!name_selector_entry->entry_completion) { Did you verify your fix? I guess, you mean... + ENameSelectorEntry *name_selector_entry = E_NAME_SELECTOR_ENTRY (object); + + if (name_selector_entry->entry_completion) { Correct me, if I am wrong.
Created attachment 65887 [details] [review] revised patch Ooops. My mistake. I'm quite silly.
Approved for commit.
patch committed both to stable branch and HEAD: http://cvs.gnome.org/viewcvs/evolution-data-server/libedataserverui/e-name-selector-entry.c?r1=1.31&r2=1.32 http://cvs.gnome.org/viewcvs/evolution-data-server/libedataserverui/e-name-selector-entry.c?r1=1.30&r2=1.30.2.1 fix will be included in stable evolution 2.6.3 and unstable evolution 2.7.3. thanks a lot!