UPSTREAM: ASN.1: Fix check for strdup() success
commit 5a43001c01691dcbd396541e6faa2c0077378f48 upstream. It seems there is a misprint in the check of strdup() return code that can lead to NULL pointer dereference. Found by Linux Verification Center (linuxtesting.org) with SVACE. Fixes:4520c6a49a
("X.509: Add simple ASN.1 grammar compiler") Change-Id: I625ab151cdb5da606d1b3ae364c90e4b0f6f9dc5 Signed-off-by: Ekaterina Orlova <vorobushek.ok@gmail.com> Cc: David Woodhouse <dwmw2@infradead.org> Cc: James Bottomley <jejb@linux.ibm.com> Cc: Jarkko Sakkinen <jarkko@kernel.org> Cc: keyrings@vger.kernel.org Cc: linux-kbuild@vger.kernel.org Link: https://lore.kernel.org/r/20230315172130.140-1-vorobushek.ok@gmail.com/ Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> (cherry picked from commitab91b09f39
) Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
parent
c45eb7457f
commit
b0b7c6147e
@ -625,7 +625,7 @@ int main(int argc, char **argv)
|
||||
p = strrchr(argv[1], '/');
|
||||
p = p ? p + 1 : argv[1];
|
||||
grammar_name = strdup(p);
|
||||
if (!p) {
|
||||
if (!grammar_name) {
|
||||
perror(NULL);
|
||||
exit(1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user