[asterisk-commits] tilghman: trunk r116694 - in /trunk/include/asterisk: strings.h utils.h

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu May 15 17:05:48 CDT 2008


Author: tilghman
Date: Thu May 15 17:05:47 2008
New Revision: 116694

URL: http://svn.digium.com/view/asterisk?view=rev&rev=116694
Log:
Add an extra check in ast_strlen_zero, and make ast_assert() not print the
file, line, and function name twice.
(Closes issue #12650)

Modified:
    trunk/include/asterisk/strings.h
    trunk/include/asterisk/utils.h

Modified: trunk/include/asterisk/strings.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/strings.h?view=diff&rev=116694&r1=116693&r2=116694
==============================================================================
--- trunk/include/asterisk/strings.h (original)
+++ trunk/include/asterisk/strings.h Thu May 15 17:05:47 2008
@@ -29,10 +29,25 @@
 
 /* You may see casts in this header that may seem useless but they ensure this file is C++ clean */
 
+#ifdef AST_DEVMODE
+#define ast_strlen_zero(foo)	_ast_strlen_zero(foo, __FILE__, __PRETTY_FUNCTION__, __LINE__)
+static force_inline int _ast_strlen_zero(const char *s, const char *file, const char *function, int line)
+{
+	if (!s || (*s == '\0')) {
+		return 1;
+	}
+	if (!strcmp(s, "(null)")) {
+		ast_log(__LOG_WARNING, file, line, function, "Possible programming error: \"(null)\" is not NULL!\n");
+	}
+	return 0;
+}
+
+#else
 static force_inline int ast_strlen_zero(const char *s)
 {
 	return (!s || (*s == '\0'));
 }
+#endif
 
 /*! \brief returns the equivalent of logic or for strings:
  * first one if not empty, otherwise second one.

Modified: trunk/include/asterisk/utils.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/utils.h?view=diff&rev=116694&r1=116693&r2=116694
==============================================================================
--- trunk/include/asterisk/utils.h (original)
+++ trunk/include/asterisk/utils.h Thu May 15 17:05:47 2008
@@ -662,8 +662,8 @@
 	if (__builtin_expect(!condition, 1)) {
 		/* Attempt to put it into the logger, but hope that at least someone saw the
 		 * message on stderr ... */
-		ast_log(LOG_ERROR, "FRACK!, Failed assertion %s (%d) at line %d in %s of %s\n",
-			condition_str, condition, line, function, file);
+		ast_log(__LOG_ERROR, file, line, function, "FRACK!, Failed assertion %s (%d)\n",
+			condition_str, condition);
 		fprintf(stderr, "FRACK!, Failed assertion %s (%d) at line %d in %s of %s\n",
 			condition_str, condition, line, function, file);
 		/* Give the logger a chance to get the message out, just in case we abort(), or




More information about the asterisk-commits mailing list