summaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-10-26 18:54:24 +0000
committerRussell Bryant <russell@russellbryant.com>2005-10-26 18:54:24 +0000
commita736096e0b41f218cabd514a7841577a2ff4060e (patch)
treec0ffbb2fbd1dd819c7587a31da636ca6f4ae71c0 /utils.c
parentb5326f99fcad63b818436b02966afafbeabd24d6 (diff)
change ast_strlen_zero to also check for the string to be defined
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6862 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils.c')
-rwxr-xr-xutils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils.c b/utils.c
index 889ab4b6a..d8dcfa6c7 100755
--- a/utils.c
+++ b/utils.c
@@ -570,7 +570,7 @@ int ast_build_string(char **buffer, size_t *space, const char *fmt, ...)
int ast_true(const char *s)
{
- if (!s || ast_strlen_zero(s))
+ if (ast_strlen_zero(s))
return 0;
/* Determine if this is a true value */
@@ -587,7 +587,7 @@ int ast_true(const char *s)
int ast_false(const char *s)
{
- if (!s || ast_strlen_zero(s))
+ if (ast_strlen_zero(s))
return 0;
/* Determine if this is a false value */