freebsd-ports/net-mgmt/openvmps/files/patch-data.c
Pawel Pekala c7e7ccd7e9 Update to version 1.4.04
PR:		ports/172047
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
Feature safe:	yes
2012-11-10 15:38:55 +00:00

11 lines
254 B
C

--- data.c.orig 2012-11-10 16:26:08.000000000 +0100
+++ data.c 2012-11-10 16:27:30.000000000 +0100
@@ -37,7 +37,7 @@
void *xfree(void *p) {
- if (p == NULL) return;
+ if (p == NULL) return NULL;
vmps_log(DEBUG|SYSTEM, "FREE: %x",p);
free(p);
}