# HG changeset patch # User Mark Doliner # Date 1174807201 0 # Node ID f33506aa71afe1fd9b7ac9f31f438e5a7a76de64 # Parent 26593bef65684e0d2e4e693a1cde98beee2b75c1 Fix a one time memleak of 24 bytes. purple_log_init() was passing in 3 PurpleValues but it only stated that it was passing in 2 values. So the signals system ignored the third value. diff -r 26593bef6568 -r f33506aa71af libpurple/log.c --- a/libpurple/log.c Sun Mar 25 07:07:29 2007 +0000 +++ b/libpurple/log.c Sun Mar 25 07:20:01 2007 +0000 @@ -638,7 +638,7 @@ #else #error Unknown size of time_t #endif - purple_value_new(PURPLE_TYPE_STRING), 2, + purple_value_new(PURPLE_TYPE_STRING), 3, purple_value_new(PURPLE_TYPE_SUBTYPE, PURPLE_SUBTYPE_LOG), #if SIZEOF_TIME_T == 4