From: Ali Sabil Date: Mon, 11 Jan 2010 19:59:36 +0000 (+0100) Subject: glib-2.0: Fix array length for g_base64_decode X-Git-Tag: 0.7.10~102 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=04d5eae25070045e5626425a02b222ab858bed1b;p=thirdparty%2Fvala.git glib-2.0: Fix array length for g_base64_decode --- diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index 25af7c158..ce515af2b 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -1830,8 +1830,8 @@ namespace GLib { public static size_t encode_close (bool break_lines, char* _out, ref int state, ref int save); public static string encode (uchar[] data); public static size_t decode_step (char[] _in, uchar* _out, ref int state, ref uint save); - [CCode (array_length = false)] - public static uchar[] decode (string text, out size_t out_len); + [CCode (array_length_type = "size_t")] + public static uchar[] decode (string text); } /* Data Checksums */