Koji Takeda

Results 1 issues of Koji Takeda

# Description The `sizeof(*ptr)` expressions are a bit confusing when `ptr == NULL`. So this PR replaces them with `sizeof(TYPE)` expression instead to make the meaning more clear. Fixes zd#...