mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
14 lines
237 B
Java
14 lines
237 B
Java
import java.nio.MappedByteBuffer;
|
|
|
|
class Test
|
|
{
|
|
public static int triggerBug(MappedByteBuffer buffer)
|
|
{
|
|
int a = buffer.getInt();
|
|
int b = buffer.getInt();
|
|
if(a == 0 && b == 1)
|
|
return 0;
|
|
else
|
|
return 1;
|
|
}
|
|
} |