[vala] glib-2.0: Fix array length for g_base64_decode
- From: Ali Sabil <asabil src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [vala] glib-2.0: Fix array length for g_base64_decode
- Date: Mon, 11 Jan 2010 20:00:21 +0000 (UTC)
commit 04d5eae25070045e5626425a02b222ab858bed1b
Author: Ali Sabil <ali sabil gmail com>
Date: Mon Jan 11 20:59:36 2010 +0100
glib-2.0: Fix array length for g_base64_decode
vapi/glib-2.0.vapi | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi
index 25af7c1..ce515af 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 */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]