Container platform
No response
Version
master version
OS version of the container image
No response
Bugzilla, Jira
No response
Description
The source code here has an error:
|
if (!strncmp(SCL_MODULES_PATH, enabled_collections[i], |
|
sizeof(SCL_MODULES_PATH - 1))){ |
It should not calc in sizeof(). I think the real code should be:
if (!strncmp(SCL_MODULES_PATH, enabled_collections[i],
sizeof(SCL_MODULES_PATH) - 1)){
Reproducer
No response
Container platform
No response
Version
master version
OS version of the container image
No response
Bugzilla, Jira
No response
Description
The source code here has an error:
scl-utils/src/scllib.c
Lines 112 to 113 in 1b78a48
It should not calc in sizeof(). I think the real code should be:
Reproducer
No response