From 39e23af4dac0c5c658ef1d3219423086b1e4658a Mon Sep 17 00:00:00 2001 Message-Id: <39e23af4dac0c5c658ef1d3219423086b1e4658a.1714820689.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 25 Jan 2001 21:10:56 +0000 Subject: [PATCH] Refer to the correct memory allocator. Organization: Straylight/Edgeware From: mdw --- man/env.3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/env.3 b/man/env.3 index 2cab862..5978879 100644 --- a/man/env.3 +++ b/man/env.3 @@ -39,9 +39,9 @@ The function .B env_export creates a Unix environment array from a symbol table. The environment array is one big block of memory allocated using -.BR malloc (3); +.BR xmalloc (3); hence, one call to -.BR free (3) +.BR xfree (3) releases all the memory used for the pointer array and the strings. .PP The -- [mdw]