merge from open-source master

Change-Id: Iaaf6c1098fc0c5a44a7450d790ccaf2b1d2f64bb
This commit is contained in:
The Android Open Source Project
2010-06-14 14:30:58 -07:00

View File

@@ -973,7 +973,7 @@ public class RunningServices extends ListActivity
&& buffer[index] <= '9') {
index++;
}
String str = new String(buffer, 0, start, index-start);
String str = new String(buffer, start, index-start);
return ((long)Integer.parseInt(str)) * 1024;
}
index++;