pkgconf_path_match_list() doesn't use relocated path it produces #129

Closed
opened 2017-09-08 14:10:44 +00:00 by karen-arutyunov · 1 comment
karen-arutyunov commented 2017-09-08 14:10:44 +00:00 (Migrated from github.com)

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;

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.

A fix will be available in pkgconf 1.3.9.
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: ariadne/pkgconf#129
There is no content yet.