From e31c4fca7d5204cadb21c2122cc9d86b492b292f Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Wed, 9 May 2007 14:52:13 +0000 Subject: Merged revisions 63566 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ................ r63566 | tilghman | 2007-05-09 09:50:33 -0500 (Wed, 09 May 2007) | 10 lines Merged revisions 63565 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r63565 | tilghman | 2007-05-09 09:48:06 -0500 (Wed, 09 May 2007) | 2 lines Replicate fix from 51158 (app_voicemail) to app_directory (Issue 9224) ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@63567 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_directory.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/app_directory.c b/apps/app_directory.c index b14915e4a..8a62c65eb 100644 --- a/apps/app_directory.c +++ b/apps/app_directory.c @@ -98,7 +98,7 @@ static void retrieve_file(char *dir) void *fdm = MAP_FAILED; SQLHSTMT stmt; char sql[256]; - char fmt[80]=""; + char fmt[80]="", empty[10] = ""; char *c; SQLLEN colsize; char full_fn[256]; @@ -149,7 +149,7 @@ static void retrieve_file(char *dir) break; } - res = SQLGetData(stmt, 1, SQL_BINARY, NULL, 0, &colsize); + res = SQLGetData(stmt, 1, SQL_BINARY, empty, 0, &colsize); fdlen = colsize; if (fd > -1) { char tmp[1]=""; -- cgit v1.2.3