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 121455 - Possible memory corruption in "Open Recent"
Possible memory corruption in "Open Recent"
Status: RESOLVED FIXED
Product: libegg
Classification: Other
Component: recent-files
unspecified
Other other
: High critical
: ---
Assigned To: James Willcox
James Willcox
Depends on:
Blocks: 121463
 
 
Reported: 2003-09-04 15:07 UTC by Laurent Vivier
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Correct the type of egg_recent_item_ref() (1.33 KB, patch)
2003-09-04 15:08 UTC, Laurent Vivier
none Details | Review

Description Laurent Vivier 2003-09-04 15:07:01 UTC
This bug has been detected on AIX because the bad pointer used generates a
core.

***** in egg-recent-item.c:

GType
egg_recent_item_get_type (void)
{
        static GType boxed_type = 0;

        if (!boxed_type) {
                boxed_type = g_boxed_type_register_static ("EggRecentItem",
                                        (GBoxedCopyFunc)egg_recent_item_ref,
                                        (GBoxedFreeFunc)egg_recent_item_unref);
        }

        return boxed_type;
}

***** GBoxedCopyFunc type is:

typedef gpointer (*GBoxedCopyFunc)     (gpointer        boxed);

***** and egg_recent_item_ref is:

void
egg_recent_item_ref (EggRecentItem *item)
{
        item->refcount++;
}

***** and in boxed_proxy_collect_value:

value->data[0].v_pointer = node->copy (collect_values[0].v_pointer);

and node->copy() = egg_recent_item_ref()

***** BUT egg_recent_item_ref() returns NOTHING because type is void.

THIS works on linux because the parameter is the value to return and I
think it's stored in the same register.
Comment 1 Laurent Vivier 2003-09-04 15:08:57 UTC
Created attachment 19728 [details] [review]
Correct the type of egg_recent_item_ref()
Comment 2 Laurent Vivier 2003-09-04 15:38:29 UTC
Same problem found in:

./file-roller/src/recent-files/egg-recent-item.c
./gedit/src/recent-files/egg-recent-item.c
./gnome-panel/gnome-panel/egg-recent-item.c
./nautilus/cut-n-paste-code/libegg/egg-recent-item.c

Comment 3 Murray Cumming 2003-09-04 16:32:23 UTC
Reassigning to libegg.
Comment 4 Vincent Untz 2003-09-04 16:37:01 UTC
I'm reassigning to the owner of the component.
Comment 5 James Willcox 2003-09-04 19:52:29 UTC
Wow, that's an incredibly embarassing mistake.  I'm applying the patch
to libegg.  
Comment 6 Vincent Untz 2003-09-07 16:55:50 UTC
James : can we close the bug now that you committed the patch ?
Comment 7 Jason Leach 2004-01-27 05:46:07 UTC
Closing this bug, it's been fixed in libegg itself for a while now.

I personally just committed updates to the libegg sources found in eog
and nautilus. file-roller, gedit, and gnome-panel are using updated
copies that contain this fix.