Add missing allocation failure check

This commit is contained in:
Romain Vimont 2022-07-19 12:17:02 +02:00
parent 396e4bd925
commit 4aeb78ece2

View file

@ -23,6 +23,11 @@ read_string(libusb_device_handle *handle, uint8_t desc_index) {
// When non-negative, 'result' contains the number of bytes written
char *s = malloc(result + 1);
if (!s) {
LOG_OOM();
return NULL;
}
memcpy(s, buffer, result);
s[result] = '\0';
return s;