Skip to content

Commit

Permalink
Bug 1581759 - fix incorrect if condition in symkeyutil. r=kjacobs
Browse files Browse the repository at this point in the history
  • Loading branch information
kaie committed Sep 18, 2019
1 parent 7192bf2 commit 1086616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/symkeyutil/symkeyutil.c
Expand Up @@ -254,7 +254,7 @@ HexToBuf(char *inString, SECItem *outbuf)
int trueLen = 0;

outbuf->data = PORT_Alloc(outlen);
if (outbuf->data) {
if (!outbuf->data) {
return -1;
}

Expand Down

0 comments on commit 1086616

Please sign in to comment.