Mercurial > pidgin
view PROGRAMMING_NOTES @ 3941:23c430e780eb
[gaim-migrate @ 4117]
(23:03:23) Luke: gaim cvs has a fairly significant memory leak
(23:04:09) Sean: yes--it leaks the size of every message received
(23:04:21) Luke: ffuunn
(23:09:33) Sean: do me a favor and fix it for me
(23:09:41) Luke: fix what
(23:09:48) Sean: the leak
(23:10:03) Sean: uncomment g_free(ws); in gtk_imhtml_append_text
(23:10:14) Luke: how many crashes will that cause
(23:10:17) Sean: none
(23:10:22) Sean: I fixed the crashing
(23:10:27) Sean: but forgot to uncomment that
(23:10:48) Luke: what file is that in
(23:11:06) Sean: gtkimhtml.c
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Mon, 11 Nov 2002 04:17:25 +0000 |
parents | e3a8baffcc24 |
children | e074172f4a41 |
line wrap: on
line source
Notes on keeping GAIM OS independant ------------------------------------ General ------- - Use G_DIR_SEPARATOR_S and G_DIR_SEPARATOR for paths - Use g_getenv, g_snprintf, g_vsnprintf - Use gaim_home_dir instead of g_get_home_dir or g_getenv("HOME") - Make sure when including win32dep.h that it is the last header to be included. PLUGINS & PROTOS ---------------- - G_MODULE_EXPORT all functions which are to be accessed from outside the scope of its "dll" or "so". (E.G. gaim_plugin_init) - G_MODULE_IMPORT all global variables which are located outside your dynamic library. (E.G. connections) (Not doing this will cause "Memory Access Violations" in Win32)