In parseAndRemoveEnvironments function, it declares its paramerter type as rvalue. But in ProcessLauncher::launchProcess(), the argument of parseAndRemoveEnvironments still be used after the call of the function. Currently the rvalue is not assigned to any other variable in parseAndRemoveEnvironments, so it doesn't lead to runtime error but use of move semantic is not appropriate semantically in this case.
Created attachment 264006 [details] Patch
Comment on attachment 264006 [details] Patch Clearing flags on attachment: 264006 Committed r191868: <http://trac.webkit.org/changeset/191868>
All reviewed patches have been landed. Closing bug.