Skip to content

Commit a457e88

Browse files
committed
Remove glib dependencies from the embed samples. Fixes #660117.
1 parent 2d3d933 commit a457e88

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

samples/embed/test-invoke.c

+11-8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
#include <mono/metadata/debug-helpers.h>
66
#include <string.h>
77
#include <stdlib.h>
8-
#include <glib.h>
8+
9+
#ifndef FALSE
10+
#define FALSE 0
11+
#endif
912

1013
/*
1114
* Simple mono embedding example.
@@ -76,7 +79,7 @@ access_reference_field (MonoObject *obj)
7679
p = mono_string_to_utf8 (strval);
7780
printf ("Value of str is: %s\n", p);
7881
/* we need to free the result from mono_string_to_utf8 () */
79-
g_free (p);
82+
mono_free (p);
8083

8184
/* string are immutable, so we need to create a different string */
8285
strval = mono_string_new (domain, "hello from the embedding API");
@@ -99,8 +102,8 @@ call_methods (MonoObject *obj)
99102
MonoObject *result, *exception;
100103
MonoString *str;
101104
char *p;
102-
gpointer iter;
103-
gpointer args [2];
105+
void* iter;
106+
void* args [2];
104107
int val;
105108

106109
klass = mono_object_get_class (obj);
@@ -164,7 +167,7 @@ call_methods (MonoObject *obj)
164167
p = mono_string_to_utf8 (str);
165168
printf ("Value of str from property is: %s\n", p);
166169
/* we need to free the result from mono_string_to_utf8 () */
167-
g_free (p);
170+
mono_free (p);
168171

169172
/* Now we'll show two things:
170173
* 1) static methods are invoked with mono_runtime_invoke () as well,
@@ -205,7 +208,7 @@ call_methods (MonoObject *obj)
205208
p = mono_string_to_utf8 (str);
206209
printf ("Values of str/val from Values () are: %s/%d\n", p, val);
207210
/* we need to free the result from mono_string_to_utf8 () */
208-
g_free (p);
211+
mono_free (p);
209212
}
210213

211214
static void
@@ -241,7 +244,7 @@ more_methods (MonoDomain *domain)
241244
p = mono_string_to_utf8 (str);
242245
printf ("25.ToString (): %s\n", p);
243246
/* we need to free the result from mono_string_to_utf8 () */
244-
g_free (p);
247+
mono_free (p);
245248

246249
/* Now: see how the result is different if we search for the ToString ()
247250
* method in System.Object: mono_runtime_invoke () doesn't do any sort of
@@ -255,7 +258,7 @@ more_methods (MonoDomain *domain)
255258
p = mono_string_to_utf8 (str);
256259
printf ("25.ToString (), from System.Object: %s\n", p);
257260
/* we need to free the result from mono_string_to_utf8 () */
258-
g_free (p);
261+
mono_free (p);
259262

260263
/* Now get the method that overrides ToString () in obj */
261264
vtmethod = mono_object_get_virtual_method (obj, method);

0 commit comments

Comments
 (0)