Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This addresses a compiler false positive identification of a missing
variable initialization.
Note that access to 'prefix' is preceded by the following check:
if (!libname)
return 0;
and that all code paths which include an initialization of 'libname'
also entail the initialization of 'prefix'.
|
|
of the three compilers in use (gcc 5.3.0, clang 3.6.2, cparser 1.22.1),
the missing initialization was only spotted by cparser.
|
|
of the three compilers in use (gcc 5.3.0, clang 3.6.2, cparser 1.22.1),
this bug was only spotted by cparser.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|