'string.format' may get buffer as an argument when there are

missing arguments and format string is too long
This commit is contained in:
Roberto Ierusalimschy 2010-04-19 13:39:25 -03:00
parent 973d81efb3
commit 8003e9544d
1 changed files with 14 additions and 2 deletions

16
bugs
View File

@ -1880,8 +1880,8 @@ patch = [[
+++ lundump.c 2008/04/04 19:51:41 2.7.1.4
@@ -1,5 +1,5 @@
/*
-** $Id: bugs,v 1.104 2009/08/05 13:09:38 roberto Exp roberto $
+** $Id: bugs,v 1.104 2009/08/05 13:09:38 roberto Exp roberto $
-** $Id: bugs,v 1.105 2009/11/23 14:59:30 roberto Exp roberto $
+** $Id: bugs,v 1.105 2009/11/23 14:59:30 roberto Exp roberto $
** load precompiled Lua chunks
** See Copyright Notice in lua.h
*/
@ -2257,3 +2257,15 @@ patch = [[
]]
}
Bug{
what = [['string.format' may get buffer as an argument when there are
missing arguments and format string is too long]],
report = [[Roberto I., 2010/04/12]],
since = [[5.0]],
example = [[
x = string.rep("x", 10000) .. "%d"
print(string.format(x)) -- gives wrong error message
patch = [[
]]
}