fix flag error (bug #3130)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4553 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2004-12-24 18:56:57 +00:00
parent 713a2eb072
commit a84da8a0b9

View File

@@ -475,7 +475,7 @@ static struct ast_vm_user *find_user(struct ast_vm_user *ivm, const char *contex
vmu = malloc(sizeof(struct ast_vm_user));
if (vmu) {
memcpy(vmu, cur, sizeof(struct ast_vm_user));
ast_set2_flag(vmu, ivm, VM_ALLOCED);
ast_set2_flag(vmu, !ivm, VM_ALLOCED);
vmu->next = NULL;
}
} else