From 16fa519730b7b0a4df65179e94b75678371fb361 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marc-Andr=C3=A9=20Lureau?= Date: Fri, 18 Nov 2011 15:20:50 +0100 Subject: [PATCH] libxml-2.0: xmlParseURI and xmlParseURIRaw return a nullable string Fixes bug 664334. --- vapi/libxml-2.0.vapi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vapi/libxml-2.0.vapi b/vapi/libxml-2.0.vapi index d5fdf297b..6f8830189 100644 --- a/vapi/libxml-2.0.vapi +++ b/vapi/libxml-2.0.vapi @@ -869,10 +869,10 @@ namespace Xml { public static int normalize_uri_path (string path); [CCode (cname = "xmlParseURI")] - public static URI parse (string str); + public static URI? parse (string str); [CCode (cname = "xmlParseURIRaw")] - public static URI parse_raw (string str, bool raw); + public static URI? parse_raw (string str, bool raw); [CCode (cname = "xmlParseURIReference")] public int parse_reference (string str); -- 2.47.2