http://qs321.pair.com?node_id=11149118


in reply to Uncontrolled Format String - Checkmarx issue

Your code doesn't compile. Try terminating your open statement with a semi-colon. If this isn't your actual code then there's little point in us analysing the rest of it.


🦛

Replies are listed 'Best First'.
Re^2: Uncontrolled Format String - Checkmarx issue
by Rishi2Monk (Novice) on Dec 27, 2022 at 12:00 UTC
    hippo Sorry I missed to add the semicolon while copying the original code.

      Even if we add in that semi-colon, your code still doesn't compile.

      $ cat 11149115.pl open (STAT, "<", "$file"); while ( $content = <STAT> ) { : $errcnt = $total - $content; } : printf RPT " Number of Rejected Records : $errcnt\n"; $ perl -cw 11149115.pl syntax error at 11149115.pl line 3, near ":" syntax error at 11149115.pl line 7, near ":" 11149115.pl had compilation errors. $

      Just paste your actual code into the node so our time isn't wasted fixing things you've broken in the copy only. And when you've done that, download the code from the node and try to compile and run it yourself just to be sure.


      🦛