diff options
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | 2022-08-17 01:20:33 +0000 |
---|---|---|
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | 2022-08-17 01:20:33 +0000 |
commit | 44b7520a5328fd5ae1a3eddc8d1c7e749b553d46 (patch) | |
tree | e9ea5c0d94d3e557c9dc9b89445dab7038a2d3cf | |
parent | dacabf034e5d7b3ae825bd1f3ad83f85b35bd7ad (diff) | |
parent | 80b3183143d24021b29f7afd147b55625f39a2ef (diff) |
Snap for 8955156 from 80b3183143d24021b29f7afd147b55625f39a2ef to udc-release
Change-Id: Ie4f9eedcd980f276a09ce33fe1a85df66dae5f78
-rw-r--r-- | compress.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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); |