GNOME Bugzilla – Bug 688556
compile error: child_by_aname in libgsf-1.vapi
Last modified: 2012-11-19 12:30:57 UTC
Created attachment 229256 [details] ms-ole file Hello. I tried to read "/BodyText/Section0" in msole file. but, an error occurred. Please refer to https://mail.gnome.org/archives/vala-list/2012-November/msg00059.html https://mail.gnome.org/archives/vala-list/2012-November/msg00060.html According to the advice of Tarnyko, I have modified /usr/share/vala-0.18/vapi/libgsf-1.vapi public unowned Gsf.Input child_by_aname (string[] names); to public unowned Gsf.Input child_by_aname ([CCode (array_length = false)] string[] names); It works fine. ------------------------------------- int main (string[] args) { // declare objects Gsf.InputStdio file; Gsf.InfileMSOle olefile; string filename = args[1]; // load the OLE file try { file = new Gsf.InputStdio (filename); } catch { stderr.printf ("File %s not found\n", filename); return 1; } try { olefile = new Gsf.InfileMSOle (file); } catch { stderr.printf ("%s is not a OLE file\n", filename); return 1; } string[] names = {"BodyText", "Section0"}; // error occurred Gsf.Input body_text = olefile.child_by_aname(names); body_text.dump(false); return 0; } ---------------- $ valac --pkg libgsf-1 gsf-msole.vala gsf-msole.vala:27.15-27.55: warning: local variable `body_text' declared but never used Gsf.Input body_text = olefile.child_by_aname(names); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /home/cogniti/Documents/gsf-msole.vala.c: In function ‘_vala_main’: /home/cogniti/Documents/gsf-msole.vala.c:144:2: warning: passing argument 2 of ‘gsf_infile_child_by_aname’ from incompatible pointer type [enabled by default] In file included from /usr/include/libgsf-1/gsf/gsf-infile-impl.h:27:0, from /home/cogniti/Documents/gsf-msole.vala.c:13: /usr/include/libgsf-1/gsf/gsf-infile.h:42:13: note: expected ‘const char **’ but argument is of type ‘gchar **’ /home/cogniti/Documents/gsf-msole.vala.c:144:2: error: too many arguments to function ‘gsf_infile_child_by_aname’ In file included from /usr/include/libgsf-1/gsf/gsf-infile-impl.h:27:0, from /home/cogniti/Documents/gsf-msole.vala.c:13: /usr/include/libgsf-1/gsf/gsf-infile.h:42:13: note: declared here error: cc exited with status 256 Compilation failed: 1 error(s), 1 warning(s)
I confirm the bug. Details : generates excedental argument "names_length" in C source, prevents compile.
commit a73e27101f94f40eca9366ca5be6e83b725a088c Author: Luca Bruno <lucabru@src.gnome.org> Date: Mon Nov 19 13:28:33 2012 +0100 libgsf-1: No array length for Infile.child_by_aname.names Fixes bug 688556. This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report.