glib: Avoid unnecessary qualifier in Marshaller.PtrToStringArrayGFree

This commit is contained in:
Bertrand Lorentz 2013-11-17 16:26:02 +01:00
parent 32d10bd319
commit ced6f5e677

View File

@ -233,9 +233,9 @@ namespace GLib {
string[] members = new string[count];
for (int i = 0; i < count; ++i) {
IntPtr s = Marshal.ReadIntPtr (string_array, i * IntPtr.Size);
members[i] = GLib.Marshaller.PtrToStringGFree (s);
members[i] = PtrToStringGFree (s);
}
GLib.Marshaller.Free (string_array);
Free (string_array);
return members;
}