Merge "Improve security by avoiding buffer overflows"
This commit is contained in:
commit
4a1f5fb034
@ -34,7 +34,7 @@
|
||||
|
||||
EXECS = guest_scale_helper guest_scale_agent
|
||||
|
||||
CFLAGS= -g -Wall
|
||||
CFLAGS= -g -Wall -Wformat -Wformat-security
|
||||
ODIR=obj
|
||||
BINDIR=bin
|
||||
|
||||
|
@ -66,6 +66,7 @@ program_BUILD_OBJS := $(addprefix $(BUILD_DIR)/, $(heartbeat_C_OBJS))
|
||||
program_BUILD_OBJS += $(addprefix $(BUILD_DIR)/, $(program_C_OBJS))
|
||||
|
||||
CFLAGS = -g -O2 -Wall -Werror -Wformat -DSYSCONFDIR=$(sysconfdir)
|
||||
CFLAGS += -Wformat-security
|
||||
|
||||
all: build
|
||||
|
||||
|
@ -54,7 +54,7 @@ heartbeat_C_INCLUDES += -I$(CURRENT_DIR)/../../../include
|
||||
heartbeat_C_SRCS := $(wildcard *.c)
|
||||
heartbeat_C_OBJS := ${heartbeat_C_SRCS:.c=.o}
|
||||
|
||||
CFLAGS = -g -O2 -Wall -Werror -Wformat -DSYSCONFDIR=$(sysconfdir)
|
||||
CFLAGS = -g -O2 -Wall -Werror -Wformat -DSYSCONFDIR=$(sysconfdir) -Wformat-security
|
||||
|
||||
%.o: %.c
|
||||
$(CC) $(CFLAGS) $(heartbeat_C_INCLUDES) -c $< -o $(BUILD_DIR)/$@ -ljson-c
|
||||
|
@ -72,7 +72,7 @@ sample_C_OBJS := ${sample_C_SRCS:.c=.o}
|
||||
sample_LDLIBS := -L$(BUILD_DIR) -l$(common_NAME) -l$(heartbeat_NAME) -lrt
|
||||
sample_BUILD_OBJS := $(addprefix $(BUILD_DIR)/, $(sample_C_OBJS))
|
||||
|
||||
CFLAGS = -g -O2 -Wall -Werror -Wformat -fPIC -DSYSCONFDIR=$(sysconfdir)
|
||||
CFLAGS = -g -O2 -Wall -Werror -Wformat -fPIC -DSYSCONFDIR=$(sysconfdir) -Wformat-security
|
||||
|
||||
all: build
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
||||
|
||||
EXECS= guest_agent server_group_app
|
||||
|
||||
CFLAGS= -g -Wall
|
||||
CFLAGS= -g -Wall -Wformat -Wformat-security
|
||||
LDFLAGS =
|
||||
|
||||
ODIR=obj
|
||||
|
Loading…
x
Reference in New Issue
Block a user