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 342737 - [SAX] reference is called with the parser context instead of userData
[SAX] reference is called with the parser context instead of userData
Status: RESOLVED FIXED
Product: libxml2
Classification: Platform
Component: general
2.6.x
Other All
: Normal normal
: ---
Assigned To: Daniel Veillard
libxml QA maintainers
Depends on:
Blocks:
 
 
Reported: 2006-05-23 20:22 UTC by Mike Hommey
Modified: 2006-10-12 12:53 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Mike Hommey 2006-05-23 20:22:37 UTC
Please describe the problem:
in parser.c, line 6340:
ctxt->sax->reference(ctxt, name);
should be
ctxt->sax->reference(ctxt->userData, name);

Steps to reproduce:


Actual results:


Expected results:


Does this happen every time?


Other information:
Comment 1 Mike Hommey 2006-08-21 18:41:23 UTC
hello ?
Comment 2 Mike Hommey 2006-10-02 15:49:28 UTC
is it going to be fixed ?
Comment 3 Daniel Veillard 2006-10-12 12:53:23 UTC
yes, makes sense. I also checked the full code for potential similar errors
and spotted another one. Both are fixed in CVS now,

  thanks a lot !

Daniel