From: Stefan Fritsch Date: Sat, 6 Nov 2010 22:16:25 +0000 (+0000) Subject: Another ooops: properly return APR_SUCCESS X-Git-Tag: 2.3.9~99 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e32977e84fd05c45de456d3815ae4353bc942fe1;p=apache Another ooops: properly return APR_SUCCESS git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1032169 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util.c b/server/util.c index c4799b3933..bafa68a4e4 100644 --- a/server/util.c +++ b/server/util.c @@ -2253,4 +2253,5 @@ AP_DECLARE(apr_status_t) ap_pool_cleanup_set_null(void *data_) { void **ptr = (void **)data_; *ptr = NULL; + return APR_SUCCESS; }