diff options
author | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 1999-12-02 17:05:51 +0000 |
---|---|---|
committer | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 1999-12-02 17:05:51 +0000 |
commit | 35f574a0d41026bb444a314900d2b31ddc72febb (patch) | |
tree | 5e45006ae2ebf61577e5e57815f337eb0dff7215 /misc | |
parent | 855ef2439f6a4e0e55c6c40c2c5cfc7d911c4524 (diff) | |
download | libapr-35f574a0d41026bb444a314900d2b31ddc72febb.tar.gz |
Fix a couple of warnings that were caused by the APR leak problem. These
are gone now.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59498 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc')
-rw-r--r-- | misc/unix/start.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/misc/unix/start.c b/misc/unix/start.c index 213543437..019a63eeb 100644 --- a/misc/unix/start.c +++ b/misc/unix/start.c @@ -217,6 +217,7 @@ ap_status_t ap_set_abort(int (*apr_abort)(int retcode), struct context_t *cont) } else { cont->apr_abort = apr_abort; + return APR_SUCCESS; } } |