diff options
author | Marc-André Lureau <marcandre.lureau@gmail.com> | 2011-11-18 15:20:50 +0100 |
---|---|---|
committer | Luca Bruno <lucabru@src.gnome.org> | 2011-11-18 19:46:54 +0100 |
commit | 16fa519730b7b0a4df65179e94b75678371fb361 (patch) | |
tree | 3e6ab2ac149bb1a3346d162baae6515d9d0dc2f4 | |
parent | 4dd8f85c8242504fb19e69e972fdd474aa695773 (diff) | |
download | vala-16fa519730b7b0a4df65179e94b75678371fb361.tar.gz |
libxml-2.0: xmlParseURI and xmlParseURIRaw return a nullable string
Fixes bug 664334.
-rw-r--r-- | vapi/libxml-2.0.vapi | 4 |
1 files 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); |