Merge "app_minivm: Fix possible uninitialized return value." into 13

certified/13.21
Joshua Colp 8 years ago committed by Gerrit Code Review
commit 9c8894c4af

@ -1254,7 +1254,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;

Loading…
Cancel
Save