Received: by taz.hyperreal.com (8.8.3/V2.0) id VAA29326; Mon, 13 Jan 1997 21:57:31 -0800 (PST) Received: by taz.hyperreal.com (8.8.3/V2.0) id VAA29320; Mon, 13 Jan 1997 21:57:28 -0800 (PST) Date: Mon, 13 Jan 1997 21:57:28 -0800 (PST) From: Randy Terbush Message-Id: <199701140557.VAA29320@taz.hyperreal.com> To: apache-cvs@hyperreal.com Subject: cvs commit: apache/src util_script.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@hyperreal.com randy 97/01/13 21:57:28 Modified: src util_script.c Log: Clean up some cruft that was left over from a malloc(). Revision Changes Path 1.39 +1 -2 apache/src/util_script.c Index: util_script.c =================================================================== RCS file: /export/home/cvs/apache/src/util_script.c,v retrieving revision 1.38 retrieving revision 1.39 diff -C3 -r1.38 -r1.39 *** util_script.c 1997/01/10 09:34:44 1.38 --- util_script.c 1997/01/14 05:57:27 1.39 *************** *** 79,86 **** char *t, *arg; va_list args; ! if ((av = (char **)palloc(r->pool, APACHE_ARG_MAX)) == NULL) ! log_unixerr("malloc", NULL, "failed to allocate memory for arg list", r->server); av[0] = av0; idx = 1; --- 79,85 ---- char *t, *arg; va_list args; ! av = (char **)palloc(r->pool, APACHE_ARG_MAX); av[0] = av0; idx = 1;