Revision 2412edcc74b8f1fd73bbfe9d7d1b380c2f70d2a5

markdoliner at pidgin.im markdoliner at pidgin.im
Sun Mar 25 03:35:19 EDT 2007


o   -----------------------------------------------------------------
|   Revision: 2412edcc74b8f1fd73bbfe9d7d1b380c2f70d2a5
|   Ancestor: 9f0179fed9ae1b60f4e57538e7885517fc159079
|   Author: markdoliner at pidgin.im
|   Date: 2007-03-25T07:20:01
|   Branch: im.pidgin.pidgin
|   
|   Modified files:
|           libpurple/log.c
|   
|   ChangeLog: 
|   
|   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.
|   
|   ============================================================
|   --- libpurple/log.c	0af93041712e1c47593cf5991c439d01e9451cae
|   +++ libpurple/log.c	9be83e8f42f40041887ab4a3a8ae4f288c4a4004
|   @@ -638,7 +638,7 @@ void purple_log_init(void)
|    #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

To get the patch for this revision, please do this:
mtn log --last 1 --diffs --from 2412edcc74b8f1fd73bbfe9d7d1b380c2f70d2a5


More information about the Commits mailing list