formatutils: ensure we dont leak name ptr (#2)

store format name in a std::string and free the char ptr to ensure we
dont leak on each call to drmGetFormatName.
This commit is contained in:
Tom Englund 2024-07-05 15:18:44 +02:00 committed by GitHub
parent c5cf93a3cc
commit 2a3ff6a61d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 2 deletions

View File

@ -4,5 +4,7 @@
std::string fourccToName(uint32_t drmFormat) {
auto fmt = drmGetFormatName(drmFormat);
return fmt ? fmt : "unknown";
std::string name = fmt ? fmt : "unknown";
free(fmt);
return name;
}