diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-03-27 14:30:12 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-03-27 14:30:12 -0300 |
commit | 89aee84cbc9224f638f3b7951b306d2ee8ecb71e (patch) | |
tree | 12e1664dbc5a7a5b519c9971dbb0ec31289201e0 /makefile | |
parent | f059c2bcc8e0c99287657f953cca9ba730a5432a (diff) | |
download | lua-89aee84cbc9224f638f3b7951b306d2ee8ecb71e.tar.gz lua-89aee84cbc9224f638f3b7951b306d2ee8ecb71e.tar.bz2 lua-89aee84cbc9224f638f3b7951b306d2ee8ecb71e.zip |
Fixed bug in 'lua_upvaluejoin'
Bug-fix: joining an upvalue with itself could cause a use-after-free
crash.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -58,9 +58,9 @@ MYLDFLAGS= $(LOCAL) -Wl,-E | |||
58 | MYLIBS= -ldl -lreadline | 58 | MYLIBS= -ldl -lreadline |
59 | 59 | ||
60 | 60 | ||
61 | CC= clang-3.8 | 61 | CC= gcc |
62 | CFLAGS= -Wall -O2 $(MYCFLAGS) | 62 | CFLAGS= -Wall -O2 $(MYCFLAGS) |
63 | AR= ar rcu | 63 | AR= ar rc |
64 | RANLIB= ranlib | 64 | RANLIB= ranlib |
65 | RM= rm -f | 65 | RM= rm -f |
66 | 66 | ||