mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
18 lines
467 B
Text
18 lines
467 B
Text
|
|
# Some of these created malformed parse trees with null pointers for here
|
|
# documents, causing the here document writing process to segfault.
|
|
eval ': <<EOF'
|
|
eval ': <<EOF;'
|
|
eval '`: <<EOF`'
|
|
eval '`: <<EOF;`'
|
|
eval '`: <<EOF`;'
|
|
eval '`: <<EOF;`;'
|
|
|
|
# Some of these created malformed parse trees with null pointers for here
|
|
# documents, causing sh to segfault.
|
|
eval ': <<\EOF'
|
|
eval ': <<\EOF;'
|
|
eval '`: <<\EOF`'
|
|
eval '`: <<\EOF;`'
|
|
eval '`: <<\EOF`;'
|
|
eval '`: <<\EOF;`;'
|