summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/acl.c6
-rw-r--r--src/reqs.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/acl.c b/src/acl.c
index 88f25b2..60ad82e 100644
--- a/src/acl.c
+++ b/src/acl.c
@@ -1,4 +1,4 @@
-/* $Id: acl.c,v 1.1 2000-09-12 00:08:48 rjkaes Exp $
+/* $Id: acl.c,v 1.2 2000-09-26 04:57:46 rjkaes Exp $
*
* This system handles Access Control for use of this daemon. A list of
* domains, or IP addresses (including IP blocks) are stored in a list
@@ -107,7 +107,7 @@ int insert_acl(char *location, acl_access_t access_type)
new_acl_ptr->netmask = atoi(nptr);
if (new_acl_ptr->netmask < 0 || new_acl_ptr->netmask > 32) {
- free(new_acl_ptr);
+ safefree(new_acl_ptr);
return -1;
}
} else {
@@ -120,7 +120,7 @@ int insert_acl(char *location, acl_access_t access_type)
new_acl_ptr->location = strdup(location);
if (!new_acl_ptr->location) {
- free(new_acl_ptr);
+ safefree(new_acl_ptr);
return -1;
}
diff --git a/src/reqs.c b/src/reqs.c
index 4ee6038..90463f0 100644
--- a/src/reqs.c
+++ b/src/reqs.c
@@ -1,4 +1,4 @@
-/* $Id: reqs.c,v 1.8 2000-09-12 00:04:42 rjkaes Exp $
+/* $Id: reqs.c,v 1.9 2000-09-26 04:57:46 rjkaes Exp $
*
* This is where all the work in tinyproxy is actually done. Incoming
* connections have a new thread created for them. The thread then
@@ -279,12 +279,12 @@ static int process_method(struct conn_s *connptr)
if (safe_write(connptr->server_fd, "Connection: close\r\n", 19) < 0)
goto COMMON_EXIT;
- free(request);
+ safefree(request);
free_uri(uri);
return 0;
COMMON_EXIT:
- free(request);
+ safefree(request);
free_uri(uri);
return -1;
}