summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2017-11-18 20:29:16 -0500
committerCorey Farrell <git@cfware.com>2017-11-18 19:36:58 -0600
commit19ba25dd962895d9a25b88678f7a49d21f7adc54 (patch)
tree0f9ef392d1c511a0d8592bf3edabc4694643e4b2 /apps
parent8fdc7fd1d3e77ae171671231e318d15710a0f715 (diff)
app_minivm: Fix possible uninitialized return value.
Declare 'res' initialized to -1 to deal with earlier error paths that could cause 'res' to be returned uninitialized. Change-Id: I8ac2a5755bf4174d89ef893e924c940f702b104e
Diffstat (limited to 'apps')
-rw-r--r--apps/app_minivm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_minivm.c b/apps/app_minivm.c
index 0d7a5f407..8f920e09f 100644
--- a/apps/app_minivm.c
+++ b/apps/app_minivm.c
@@ -1252,7 +1252,7 @@ static int sendmail(struct minivm_template *template, struct minivm_account *vmu
struct ast_channel *chan = NULL;
char *fromaddress;
char *fromemail;
- int res;
+ int res = -1;
if (!str1 || !str2) {
return -1;