You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
540 B
28 lines
540 B
/*
|
|
* Copyright (c) 2019-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
package codetoanalyze.java.bufferoverrun;
|
|
|
|
public class ArrayMember {
|
|
public int[] buf;
|
|
|
|
public void load_array_member_Good() {
|
|
int[] a = new int[10];
|
|
int x = buf[0];
|
|
if (x == 9) {
|
|
a[x] = 0;
|
|
}
|
|
}
|
|
|
|
public void load_array_member_Bad() {
|
|
int[] a = new int[10];
|
|
int x = buf[0];
|
|
if (x == 10) {
|
|
a[x] = 0;
|
|
}
|
|
}
|
|
}
|