aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 01:06:38 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 01:06:38 +0000
commita47feae808cb4d3f4f69debe9beee9c58782e680 (patch)
treee9ea5c0d94d3e557c9dc9b89445dab7038a2d3cf
parentdfcb0447754e3ce66c79df964b96a4d015eb4ae7 (diff)
parent80b3183143d24021b29f7afd147b55625f39a2ef (diff)
downloadtinycompress-a47feae808cb4d3f4f69debe9beee9c58782e680.tar.gz
Change-Id: Id59e43765ca66e94012984faba520d10e3383a82
-rw-r--r--compress.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/compress.c b/compress.c
index 7422c4b..ac2c73f 100644
--- a/compress.c
+++ b/compress.c
@@ -574,9 +574,11 @@ bool is_codec_supported(unsigned int card, unsigned int device,
ops = &compr_hw_ops;
fd = ops->open(card, device, flags, &data, NULL);
- if (fd < 0)
- return oops(&bad_compress, errno, "cannot open card %u, device %u",
+ if (fd < 0) {
+ oops(&bad_compress, errno, "cannot open card %u, device %u",
card, device);
+ return false;
+ }
ret = _is_codec_type_supported(ops, data, codec);