After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 100008 - Leak when reading configuration data?
Leak when reading configuration data?
Status: RESOLVED FIXED
Product: gnome-vfs
Classification: Deprecated
Component: File operations
cvs (head)
Other Linux
: Normal normal
: ---
Assigned To: gnome-vfs maintainers
gnome-vfs maintainers
: 100682 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2002-11-30 21:58 UTC by Kjartan Maraas
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
patch that fixes the memleak, possibly obscuring a real problem (2.25 KB, patch)
2002-12-01 00:10 UTC, martin H.
none Details | Review
committed patch (I added a g_free in the g_hash_table_new_full) (2.14 KB, patch)
2003-02-09 21:11 UTC, Christophe Fergeau
none Details | Review

Description Kjartan Maraas 2002-11-30 21:58:05 UTC
This trace looks to be a leak in gnome-vfs.

==26956== 17 bytes in 2 blocks are definitely lost in loss record 24 of 93
==26956==    at 0x40167140: malloc (vg_clientfuncs.c:100)
==26956==    by 0x41004959: g_malloc (gmem.c:137)
==26956==    by 0x4097C731: module_path_element_new
(gnome-vfs-configuration.c:80)
==26956==    by 0x4097CBE2: parse_line (gnome-vfs-configuration.c:295)
==26956==    by 0x4097CCCA: parse_file (gnome-vfs-configuration.c:338)
==26956==    by 0x4097CEA6: configuration_load (gnome-vfs-configuration.c:387)
==26956==    by 0x4097D165: gnome_vfs_configuration_init
(gnome-vfs-configuration.c:475)
==26956==    by 0x4097FADE: gnome_vfs_init (gnome-vfs-init.c:132)
==26956==    by 0x408EBAB1: ??? (gnome-init.c:409)
==26956==    by 0x408E85BD: gnome_program_postinit (gnome-program.c:1626)
==26956==    by 0x408E89CD: gnome_program_initv (gnome-program.c:1873)
==26956==    by 0x408E864B: gnome_program_init (gnome-program.c:1679)
==26956==    by 0x805DF4F: main (gedit2.c:332)
==26956==    by 0x41066656: __libc_start_main
(../sysdeps/generic/libc-start.c:129)
==26956==    by 0x805C920: (within /gnome/head/INSTALL/bin/gedit)
Comment 1 martin H. 2002-12-01 00:08:58 UTC
I think this is caused by 
gnome-vfs-configuration.c:293: g_hash_table_insert
(configuration->method_to_module_path, method_name, element);

I think this might be called more then once with the same method_name
(really only guessing here). If that is the case, suspect that that's
not the way it should be. Anyway if it's OK that entry in the hash
table is replaced (or it is cause by something else) I made a patch
that fixes the problem by using a hashtable with a value_destroy_func
instead so even replacing doesn't produce memleaks.

I really don't know the code, so be careful with my conclusions
Comment 2 martin H. 2002-12-01 00:10:11 UTC
Created attachment 12661 [details] [review]
patch that fixes the memleak, possibly obscuring a real problem
Comment 3 Christophe Fergeau 2003-01-20 09:46:00 UTC
See a different patch at bug #100682
Comment 4 Christophe Fergeau 2003-01-20 09:46:24 UTC
*** Bug 100682 has been marked as a duplicate of this bug. ***
Comment 5 Christophe Fergeau 2003-01-20 12:48:16 UTC
I think you are still leaking the key (method name) name when you try
to insert a value for an existing method name (see line 296 of
gnome-vfs-configuration.c).
Comment 6 Kjartan Maraas 2003-02-02 13:04:52 UTC
Should the pri on this be higher due to the patch?
Comment 7 Christophe Fergeau 2003-02-09 21:09:51 UTC
I committed the attached patch
Comment 8 Christophe Fergeau 2003-02-09 21:11:35 UTC
Created attachment 14225 [details] [review]
committed patch (I added a g_free in the g_hash_table_new_full)