Skip to content

Commit

Permalink
openconnect_base64_decode: fix sign of error return value
Browse files Browse the repository at this point in the history
  • Loading branch information
dlenski committed Sep 8, 2018
1 parent 8977877 commit 49014cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion http-auth.c
Expand Up @@ -99,7 +99,7 @@ void *openconnect_base64_decode(int *ret_len, const char *in)

err:
free(buf);
*ret_len = EINVAL;
*ret_len = -EINVAL;
return NULL;
}

Expand Down

0 comments on commit 49014cc

Please sign in to comment.