$OpenBSD: patch-base_src_common_WireException_c,v 1.1 2003/05/23 13:22:14 todd Exp $
--- base/src/common/WireException.c.orig	Sat Mar 29 16:15:25 2003
+++ base/src/common/WireException.c	Thu May 22 17:46:42 2003
@@ -56,7 +56,7 @@ void *
 wireExcpt_deserialize(const DeserializeInfo *di, SDR_stream *strm)
 {
   WireException *ex =
-    (WireException *) GC_MALLOC(sizeof(WireException));
+    (WireException *) malloc(sizeof(WireException));
 
   ser_init(ex, &WireException_SerType, di->ver);
   ex->name          = sdr_r_string("name", strm);
@@ -82,7 +82,7 @@ wireExcpt_create(Exception excpt, const 
 		 uint32_t line, const char *str)
 {
   WireException *ex = 
-    (WireException *) GC_MALLOC(sizeof(WireException));
+    (WireException *) malloc(sizeof(WireException));
 
   ser_init(ex, &WireException_SerType, WireException_SerType.ver);
 
