Index: libraries/clib/native/ZipFile.c
===================================================================
RCS file: /cvs/kaffe/kaffe/libraries/clib/native/ZipFile.c,v
retrieving revision 1.16
diff -u -r1.16 ZipFile.c
--- libraries/clib/native/ZipFile.c	6 Jan 2003 17:14:26 -0000	1.16
+++ libraries/clib/native/ZipFile.c	2 Apr 2003 13:44:45 -0000
@@ -31,7 +31,7 @@
 
 	str = checkPtr(stringJava2C(fname));
 	zip = openJarFile(str);
-	gc_free(str);
+	KFREE(str);
 	return ((struct Hkaffe_util_Ptr*)zip);
 }
 
@@ -56,7 +56,7 @@
 
 	str = checkPtr(stringJava2C(zname));
 	entry = lookupJarFile((jarFile*)zip, str);
-	gc_free(str);
+	KFREE(str);
 	if (entry == 0) {
 		return (0);
 	}
