From: Tilghman Lesher Date: Tue, 27 Nov 2007 15:41:46 +0000 (+0000) Subject: Merged revisions 89631 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~644 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd06a588000a7f2f942040bb5f3f172df8d254d0;p=thirdparty%2Fasterisk.git Merged revisions 89631 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r89631 | tilghman | 2007-11-27 09:38:03 -0600 (Tue, 27 Nov 2007) | 3 lines Default result of STAT should be "0" not "". Reported via the -users mailing list, fixed by me. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89632 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/funcs/func_env.c b/funcs/func_env.c index 362e9db504..90f582e701 100644 --- a/funcs/func_env.c +++ b/funcs/func_env.c @@ -69,7 +69,7 @@ static int stat_read(struct ast_channel *chan, const char *cmd, char *data, char *action; struct stat s; - *buf = '\0'; + ast_copy_string(buf, "0", len); action = strsep(&data, ","); if (stat(data, &s)) {