From d9ecee6a3c374893b977bb4d21860cc97470f675 Mon Sep 17 00:00:00 2001 From: tilghman Date: Tue, 27 Mar 2007 23:37:31 +0000 Subject: Merged revisions 59283 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r59283 | tilghman | 2007-03-27 18:36:49 -0500 (Tue, 27 Mar 2007) | 2 lines Oops ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@59284 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_voicemail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index b5bd8987f..f3dfb139e 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -1400,7 +1400,7 @@ static int store_file(char *dir, char *mailboxuser, char *mailboxcontext, int ms lseek(fd, 0, SEEK_SET); printf("Length is %zd\n", fdlen); fdm = mmap(NULL, fdlen, PROT_READ | PROT_WRITE, MAP_SHARED,fd, 0); - if (fdm != MAP_FAILED) { + if (fdm == MAP_FAILED) { ast_log(LOG_WARNING, "Memory map failed!\n"); ast_odbc_release_obj(obj); goto yuck; -- cgit v1.2.3