From: <rl...@us...> - 2006-05-21 02:58:12
|
Revision: 16194 Author: rlaager Date: 2006-05-20 19:58:03 -0700 (Sat, 20 May 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16194&view=rev Log Message: ----------- Part of SF Patch #1492122 from Sadrul Fix a small memory leak. Modified Paths: -------------- trunk/src/gtkconv.c Modified: trunk/src/gtkconv.c =================================================================== --- trunk/src/gtkconv.c 2006-05-18 20:53:03 UTC (rev 16193) +++ trunk/src/gtkconv.c 2006-05-21 02:58:03 UTC (rev 16194) @@ -544,6 +544,7 @@ gtk_widget_grab_focus(gtkconv->entry); if (strlen(clean) == 0) { + g_free(buf); g_free(clean); return; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |