pkgconf_path_match_list() doesn't use relocated path it produces #129
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
Implementation of pkgconf_path_match_list() function has the following code:
if (pkgconf_path_relocate(relocated, sizeof relocated))
cpath = path;
It looks wrong. Shouldn't it be:
if (pkgconf_path_relocate(relocated, sizeof relocated))
cpath = relocated;
A fix will be available in pkgconf 1.3.9.