Skip to content

Commit

Permalink
Fix use of un-initialized value
Browse files Browse the repository at this point in the history
  • Loading branch information
mhalden committed Mar 26, 2016
1 parent 50bb490 commit 64b4263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage_xml.c
Expand Up @@ -120,7 +120,7 @@ static xt_status handle_account(struct xt_node *node, gpointer data)
return XT_ABORT;
}

base64_decode(pass_b64, (unsigned char **) &pass_cr);
pass_len = base64_decode(pass_b64, (unsigned char **) &pass_cr);
if (xd->irc->auth_backend) {
password = g_strdup((char *)pass_cr);
} else {
Expand Down

0 comments on commit 64b4263

Please sign in to comment.