aboutsummaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
Diffstat (limited to 'manual')
-rw-r--r--manual/manual.of12
1 files changed, 5 insertions, 7 deletions
diff --git a/manual/manual.of b/manual/manual.of
index baa33d88..5bab781b 100644
--- a/manual/manual.of
+++ b/manual/manual.of
@@ -1403,8 +1403,7 @@ see the program @idx{luac} and the function @Lid{string.dump} for details.
1403Programs in source and compiled forms are interchangeable; 1403Programs in source and compiled forms are interchangeable;
1404Lua automatically detects the file type and acts accordingly @seeF{load}. 1404Lua automatically detects the file type and acts accordingly @seeF{load}.
1405Be aware that, unlike source code, 1405Be aware that, unlike source code,
1406the execution of maliciously crafted 1406maliciously crafted binary chunks can crash the interpreter.
1407bytecode can crash the interpreter.
1408 1407
1409} 1408}
1410 1409
@@ -6694,11 +6693,10 @@ It may be the string @St{b} (only @x{binary chunk}s),
6694or @St{bt} (both binary and text). 6693or @St{bt} (both binary and text).
6695The default is @St{bt}. 6694The default is @St{bt}.
6696 6695
6697It is safe to load malformed binary chunks; 6696Lua does not check the consistency of binary chunks.
6698@id{load} signals an appropriate error. 6697Maliciously crafted binary chunks can crash
6699However, 6698the interpreter.
6700Lua does not check the consistency of the code inside binary chunks; 6699You can use the @id{mode} parameter to prevent loading binary chunks.
6701running maliciously crafted bytecode can crash the interpreter.
6702 6700
6703} 6701}
6704 6702