From: <ro...@us...> - 2006-06-18 20:21:48
|
Revision: 16277 Author: roast Date: 2006-06-18 13:21:42 -0700 (Sun, 18 Jun 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16277&view=rev Log Message: ----------- GaimLogCommonData.path gets set in gaim_log_common_writer now; last commit put it in the wrong place Modified Paths: -------------- branches/soc-2006-file-loggers/src/log.c Modified: branches/soc-2006-file-loggers/src/log.c =================================================================== --- branches/soc-2006-file-loggers/src/log.c 2006-06-18 20:19:51 UTC (rev 16276) +++ branches/soc-2006-file-loggers/src/log.c 2006-06-18 20:21:42 UTC (rev 16277) @@ -702,10 +702,11 @@ if (log->conv != NULL) gaim_conversation_write(log->conv, NULL, _("Logging of this conversation failed."), GAIM_MESSAGE_ERROR, time(NULL)); - data->path = g_strndup(path, strlen(path)); g_free(path); return; } + + data->path = g_strndup(path, strlen(path)); g_free(path); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |