https://origsvn.digium.com/svn/asterisk/trunk
........
r177035 | dbailey | 2009-02-18 11:24:07 -0600 (Wed, 18 Feb 2009) | 2 lines
Fixed error where a check for an zero length, terminated string was needed.
........
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@177039
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
otherwise, use the empty space at the end of the current
pool
*/
- if (fields[index][0] != '0') {
+ if (fields[index][0] != '\0') {
target = (char *) fields[index];
available = strlen(fields[index]) + 1;
} else {