secure-software-engineering / DroidBench

A micro-benchmark suite to assess the stability of taint-analysis tools for Android
http://sseblog.ec-spride.de/tools/droidbench/
269 stars 114 forks source link

Array Access Bug in ArrayToString1 #19

Open majestyhao opened 8 years ago

majestyhao commented 8 years ago

In ArrayToString1 String[] array = new String[1]; array[1] = imei;

I think the second line should be

array[0] = imei;

JulianSchuette commented 7 years ago

Duplicate of https://github.com/secure-software-engineering/DroidBench/issues/23 . There is a pull request: https://github.com/secure-software-engineering/DroidBench/pull/25