aboutsummaryrefslogtreecommitdiffstats
path: root/erts/etc/common/Makefile.in
diff options
context:
space:
mode:
authorMichael Santos <[email protected]>2010-10-01 19:55:54 -0400
committerBjörn Gustavsson <[email protected]>2010-10-04 15:25:22 +0200
commite5a231d5234fae86458fdb3a31701f9c09d3e16e (patch)
tree112b276bb676f400722ed6b12cf9b178132c8cd3 /erts/etc/common/Makefile.in
parent570dc4eb9b730446bd33c38e9ef3020348739542 (diff)
downloadotp-e5a231d5234fae86458fdb3a31701f9c09d3e16e.tar.gz
otp-e5a231d5234fae86458fdb3a31701f9c09d3e16e.tar.bz2
otp-e5a231d5234fae86458fdb3a31701f9c09d3e16e.zip
escript: prevent buffer overflows
Check buffer operations on input from escripts, the command line and environment variables.
Diffstat (limited to 'erts/etc/common/Makefile.in')
-rw-r--r--erts/etc/common/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/etc/common/Makefile.in b/erts/etc/common/Makefile.in
index fe7d7b4f6d..7f502b277e 100644
--- a/erts/etc/common/Makefile.in
+++ b/erts/etc/common/Makefile.in
@@ -345,7 +345,7 @@ $(OBJDIR)/typer.o: typer.c
$(CC) $(CFLAGS) -o $@ -c typer.c
$(BINDIR)/escript@EXEEXT@: $(OBJDIR)/escript.o
- $(PURIFY) $(LD) $(LDFLAGS) -o $@ $(OBJDIR)/escript.o -L$(OBJDIR) $(LIBS)
+ $(PURIFY) $(LD) $(LDFLAGS) -o $@ $(OBJDIR)/escript.o -L$(OBJDIR) $(LIBS) $(ERTS_INTERNAL_LIBS)
$(OBJDIR)/escript.o: escript.c
$(CC) $(CFLAGS) -o $@ -c escript.c