GNOME Bugzilla – Bug 316224
xmlBuildRelativeURI crashes if uri is same as base and has no path info
Last modified: 2005-09-14 05:25:59 UTC
e.g. uri = "http://bugzilla.gnome.org"; base = uri; xmlBuildRelativeURI(uri, base); //lead to crash here Reason: The path of uri/base is NULL, and xmlBuildRelativeURI will use the "path" to compare whether uri is different with base. Then, memory accesss violation occurs.
Fixed in CVS - thanks for reporting this! Bill