diff options
author | 2023-05-12 09:47:12 +0200 | |
---|---|---|
committer | 2023-05-12 09:47:12 +0200 | |
commit | 50282fd57bcd3525c9d81eef58df8718e4337c6d (patch) | |
tree | 9795dfdb1a9b66904d9320f33c9216683d10576a /scripts/asn1_compiler.c | |
parent | drm/mgag200: Fix gamma lut not initialized. (diff) | |
parent | Linux 6.4-rc1 (diff) | |
download | linux-rng-50282fd57bcd3525c9d81eef58df8718e4337c6d.tar.xz linux-rng-50282fd57bcd3525c9d81eef58df8718e4337c6d.zip |
Merge drm/drm-fixes into drm-misc-fixes
Let's bring 6.4-rc1 in drm-misc-fixes to start the new fix cycle.
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Diffstat (limited to 'scripts/asn1_compiler.c')
-rw-r--r-- | scripts/asn1_compiler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/asn1_compiler.c b/scripts/asn1_compiler.c index 7b6756a8c15d..4c3f645065a4 100644 --- a/scripts/asn1_compiler.c +++ b/scripts/asn1_compiler.c @@ -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); } |