$OpenBSD: patch-base_src_common_OS_unix-path_c,v 1.1 2003/05/23 13:22:14 todd Exp $
--- base/src/common/OS/unix-path.c.orig	Fri Feb  7 12:40:19 2003
+++ base/src/common/OS/unix-path.c	Thu May 22 17:46:42 2003
@@ -166,7 +166,7 @@ path_canonical(const char *path)
 
   len++;			/* for trailing null */
 
-  s = (char *) GC_MALLOC_ATOMIC (sizeof(char) * len); 
+  s = (char *) malloc (sizeof(char) * len); 
 
   sptr = s;
   p = path;
@@ -372,7 +372,7 @@ struct OC_DIR_st
 
 OC_DIR* path_opendir(const char* dir_name, OC_bool must_exist)
 {
-  OC_DIR* dir = GC_MALLOC(sizeof(OC_DIR));
+  OC_DIR* dir = malloc(sizeof(OC_DIR));
   dir->dir = opendir(dir_name);
 
   if(!dir->dir)
