Mercurial > pidgin.yaz
view doc/plugin-signals.dox @ 21613:31101e7d275f
'man 3 ctime' says of localtime() (and friends):
"The return value points to a statically allocated struct which might be
overwritten by subsequent calls to any of the date and time functions.
The localtime_r() function does the same, but stores the data in a
user-supplied struct."
purple_str_to_time() had multiple calls to date and time functions,
although I didn't experience any problems in my testing I figured it would
be better to use localtime_r() and provide our own struct.
I hope I got this right. At least 'make check' still works :)
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Thu, 22 Nov 2007 16:45:38 +0000 |
parents | e0613cf8c493 |
children |
line wrap: on
line source
/** @page plugin-signals Plugin Signals @signals @signal plugin-load @signal plugin-unload @endsignals @see plugin.h <hr> @signaldef plugin-load @signalproto void (*plugin_load)(PurplePlugin *plugin); @endsignalproto @signaldesc Emitted when a plugin is loaded. @param plugin The plugin that was loaded. @endsignaldef @signaldef plugin-unload @signalproto void (*plugin_unload)(PurplePlugin *plugin); @endsignalproto @signaldesc Emitted when a plugin is unloaded. @param plugin The plugin that was unloaded. @endsignaldef */ // vim: syntax=c.doxygen tw=75 et