From: <svn...@op...> - 2010-08-26 19:33:45
|
Author: cdfrey Date: Thu Aug 26 21:33:36 2010 New Revision: 6102 URL: http://www.opensync.org/changeset/6102 Log: Fixed missing unref() call for gcont_format Modified: plugins/google-calendar/src/gcalendar.c Modified: plugins/google-calendar/src/gcalendar.c ============================================================================== --- plugins/google-calendar/src/gcalendar.c Thu Aug 26 21:33:29 2010 (r6101) +++ plugins/google-calendar/src/gcalendar.c Thu Aug 26 21:33:36 2010 (r6102) @@ -258,6 +258,8 @@ xmlFree(plgdata->password); if (plgdata->gcal_format) osync_objformat_unref(plgdata->gcal_format); + if (plgdata->gcont_format) + osync_objformat_unref(plgdata->gcont_format); g_free(plgdata); } |