Ihor Dutchak
Ihor Dutchak
@seanm please mark your comments as resolved if they are, so we can see if this is ready to be merged. Thanks.
At this point we wait for the maintainers to find time the finish (perform) their review and approve it nothing comes up. Ping: @tormodvolden, @hjelmn
Before we merge this, I have one more reqiest: shorten the commit message. Only keep "what was done", specially remove everything after `References:`, including any mention of users. All of...
I'd also change the `test_device` to return `0`/`1` (instead of `-1`), or even `EXIT_SUCCESS`/`EXIT_FAILURE` named constants. Negative exit code usually means exit by interruption.
That sounds even better
Lets start with fixing the CI
I assume you have logging disabled?
Partially fixed by: https://github.com/libusb/libusb/pull/1508
> When realloc is called with a size of 0, it is equivalent to calling free(ptr), and realloc returns NULL. That is not true: https://en.cppreference.com/w/c/memory/realloc > until C23: > if...
> makes libusb match FreeBSD, which is probably a good idea It is not. FreeBSD implementation of `reallocf` (e.g. [here](https://github.com/freebsd/freebsd-src/blob/main/lib/libc/stdlib/reallocf.c)) most likely depends on the behavior of FreeBSD's implementation of...