summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2007-03-27 23:38:22 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2007-03-27 23:38:22 +0000
commit185fc8711d498516c7fba5a553b1decd4f02f32b (patch)
tree97f3595aad053c4d058d85bb0ddf92e1f15ddd21
parentf7178b7bfe01fbeb9cceab436875ccf75a6e7898 (diff)
Merged revisions 59284 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ................ r59284 | tilghman | 2007-03-27 18:37:31 -0500 (Tue, 27 Mar 2007) | 10 lines 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: https://origsvn.digium.com/svn/asterisk/trunk@59285 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--apps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 9787333eb..e665d29e1 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -1442,7 +1442,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;