[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] Define err_abort only if SVN_DEBUG is defined

From: wuzhouhui <wuzhouhui14_at_mails.ucas.ac.cn>
Date: Sun, 17 Feb 2019 21:14:43 +0800

[[[
Define err_abort only if SVN_DEBUG is defined.

* subversion/libsvn_subr/error.c
 (err_abort): Define this function only if SVN_DEBUG is defined, so
 an unused function warning is fixed.
]]]
Index: subversion/libsvn_subr/error.c
===================================================================
--- subversion/libsvn_subr/error.c (revision 1853741)
+++ subversion/libsvn_subr/error.c (working copy)
@@ -146,6 +146,7 @@ svn_error__locate(const char *file, long line)
 
 /* Cleanup function for errors. svn_error_clear () removes this so
    errors that are properly handled *don't* hit this code. */
+#ifdef SVN_DEBUG
 static apr_status_t err_abort(void *data)
 {
   svn_error_t *err = data; /* For easy viewing in a debugger */
@@ -155,6 +156,7 @@ static apr_status_t err_abort(void *data)
     abort();
   return APR_SUCCESS;
 }
+#endif
 
 
 static svn_error_t *
Received on 2019-02-17 14:15:07 CET

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.