File tree Expand file tree Collapse file tree
lib/semmle/python/frameworks
test/library-tests/frameworks/dill Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ private module Dill {
2424
2525 override predicate mayExecuteInput ( ) { any ( ) }
2626
27- override DataFlow:: Node getAnInput ( ) { result = this .getArg ( 0 ) }
27+ override DataFlow:: Node getAnInput ( ) { result in [ this .getArg ( 0 ) , this . getArgByName ( "str" ) ] }
2828
2929 override DataFlow:: Node getOutput ( ) { result = this }
3030
Original file line number Diff line number Diff line change 33dill .load (file_ ) # $ MISSING: decodeInput=file_ decodeOutput=dill.loads(..) decodeFormat=dill decodeMayExecuteInput
44dill .load (file = file_ ) # $ MISSING: decodeInput=file_ decodeOutput=dill.loads(..) decodeFormat=dill decodeMayExecuteInput
55dill .loads (payload ) # $ decodeInput=payload decodeOutput=dill.loads(..) decodeFormat=dill decodeMayExecuteInput
6- dill .loads (str = payload ) # $ decodeOutput=dill.loads(..) decodeFormat=dill decodeMayExecuteInput MISSING: decodeInput=payload
6+ dill .loads (str = payload ) # $ decodeInput=payload decodeOutput=dill.loads(..) decodeFormat=dill decodeMayExecuteInput
You can’t perform that action at this time.
0 commit comments