I fixed the build break errors in GCC-9 but I can't push a branch in Github repo to create a PR for someone to review and merge.
The fix is not the thing I like to do the most but it works: I've disabled the GCC checking warnings in each point they are generated and leave other parts of the...
I'm trying to fix the errors without disabling -Werror because it is important for code quality.
Newer GCC verisons (8 and 9) have more deep checks and are aware of strcpy/strncpy/sprintf/snprintf calls to analyse them and verify if the output buffer won't be truncated (this is considered a...