Skip to content

Commit

Permalink
Bug 1365193, util: fix null pointer dereference pointed by coverity, …
Browse files Browse the repository at this point in the history
…r=kaie
  • Loading branch information
ueno committed May 16, 2017
1 parent 91ccdc0 commit e2fbfcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/pkcs11uri.c
Expand Up @@ -681,7 +681,7 @@ PK11URI_ParseURI(const char *string)

result = pk11uri_AllocURI();
if (result == NULL) {
goto fail;
return NULL;
}

/* Parse the path component and its attributes. */
Expand Down

0 comments on commit e2fbfcd

Please sign in to comment.