From: Tilghman Lesher Date: Tue, 27 Oct 2009 20:16:49 +0000 (+0000) Subject: Manager output is not always NULL-terminated, so force a NULL at the end of the files... X-Git-Tag: 1.4.27-rc3~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50c0fedbc0565178b5736978dd4ab75f9c05a7cd;p=thirdparty%2Fasterisk.git Manager output is not always NULL-terminated, so force a NULL at the end of the filestream. (closes issue #15495) Reported by: pdf Patches: 20090916__issue15495.diff.txt uploaded by tilghman (license 14) Tested by: pdf git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@226138 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/manager.c b/main/manager.c index 73a66f0bd9..67e4a4f740 100644 --- a/main/manager.c +++ b/main/manager.c @@ -2882,8 +2882,12 @@ static char *generic_http_callback(int format, struct sockaddr_in *requestor, co ast_mutex_lock(&s->__lock); if (ss.fd > -1) { char *buf; - size_t l = lseek(ss.fd, 0, SEEK_END); - if (l) { + size_t l; + + /* Ensure buffer is NULL-terminated */ + fprintf(ss.f, "%c", 0); + + if ((l = lseek(ss.fd, 0, SEEK_END)) > 0) { if (MAP_FAILED == (buf = mmap(NULL, l, PROT_READ | PROT_WRITE, MAP_PRIVATE, ss.fd, 0))) { ast_log(LOG_WARNING, "mmap failed. Manager request output was not processed\n"); } else {