Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fmt/print: fix cppcheck overflow warning #542

Merged
merged 1 commit into from
Sep 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/fmt/print.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ static int write_padded(const char *p, size_t sz, size_t pad, char pch,

static uint32_t local_itoa(char *buf, uint64_t n, uint8_t base, bool uc)
{
char c, *p = buf + NUM_SIZE;
char c, *p = buf + (NUM_SIZE - 1);
uint32_t len = 1;
const char a = uc ? 'A' : 'a';

*--p = '\0';
*p = '\0';
do {
const uint64_t dv = n / base;
const uint64_t mul = dv * base;
Expand Down