Update javascript/ql/test/query-tests/Security/CWE-078/UselessUseOfCat/uselesscat.js

Co-authored-by: Napalys Klicius <napalys@github.com>
This commit is contained in:
Asger F
2025-03-10 14:18:22 +01:00
committed by GitHub
parent 24c9b2ef9b
commit 017f458534

View File

@@ -61,7 +61,7 @@ execFile('/bin/cat', [ 'pom.xml' ], function(error, stdout, stderr ) { // $ Aler
console.log(stdout);
});
execFile('/bin/cat', [ 'pom.xml' ], function(error, stdout, stderr ) { // OK - - stderr is used.
execFile('/bin/cat', [ 'pom.xml' ], function(error, stdout, stderr ) { // OK - stderr is used.
console.log(stderr);
});