diff --git i/open-vm-tools/lib/rpcChannel/glib_stubs.c w/open-vm-tools/lib/rpcChannel/glib_stubs.c
index c32deb07..2b6e15b6 100644
--- i/open-vm-tools/lib/rpcChannel/glib_stubs.c
+++ w/open-vm-tools/lib/rpcChannel/glib_stubs.c
@@ -35,7 +35,7 @@
 
 void *g_malloc0(size_t s) { return Util_SafeCalloc(1, s); }
 void *g_malloc0_n(size_t n, size_t s) { return Util_SafeCalloc(n, s); }
-void g_free(void *p) { free(p); }
+void g_free_sized(void *p, size_t) { free(p); }
 
 void g_mutex_init(GMutex *mutex) { }
 void g_mutex_clear(GMutex *mutex) { }
