Description
*name_size_out++ is equivalent to name_size_out++ but it is possible that (*name_size_out)++ should be used.
If this is correct, then maybe * should be removed to silence Cppcheck warning.
*name_size_out = (CCHAR)GetShortPathNameW(name, name_out, 12);
|
if (*name_size_out) { |
*name_size_out++;
|
*name_size_out *= sizeof(WCHAR); |
}
|
https://qarmin.gitlab.io/-/reactos/-/jobs/557762385/artifacts/report/63.html#line-168