DroidBench
DroidBench copied to clipboard
Array Access Bug in ArrayToString1
trafficstars
In ArrayToString1
String[] array = new String[1];
array[1] = imei;
I think the second line should be
array[0] = imei;
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