Skip to content

[XRootD mover] Fix cgi truncation error.

Michal Kamil Simon requested to merge fix-xrootd-cgi-truncation into master

E.g. in statement like:

if ((qpos = info_str.find("tried") != STR_NPOS))

operator '!=' takes precedence over '=' hance in case "tried" is found 'qpos' is assigned with boolean true, which gets cast into int of value 1.

Merge request reports