Problemunvalidated
It inconsistently switches between using a hardcoded size and `sizeof`. — char buf[2048]; memset(buf, 0, sizeof(buf)); ... = snprintf(buf, 2048, ...);.
88230ba4-2357-4159-9e97-d3519e0fb8fe
It inconsistently switches between using a hardcoded size and sizeof. — char buf[2048]; memset(buf, 0, sizeof(buf)); ... = snprintf(buf, 2048, ...);.