Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TS-4558: ASAN buffer overflow in traffic_manager -h #1054

Merged
merged 1 commit into from Sep 27, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/traffic_manager/traffic_manager.cc
Expand Up @@ -81,7 +81,7 @@ static AppVersionInfo appVersionInfo; // Build info for this application
static inkcoreapi DiagsConfig *diagsConfig;
static char debug_tags[1024] = "";
static char action_tags[1024] = "";
static bool proxy_off = false;
static int proxy_off = false;
static char bind_stdout[512] = "";
static char bind_stderr[512] = "";

Expand Down Expand Up @@ -436,7 +436,7 @@ main(int argc, const char **argv)
char *proxy_port = 0;
int proxy_backdoor = -1;
char *group_addr = NULL, *tsArgs = NULL;
bool disable_syslog = false;
int disable_syslog = false;
char userToRunAs[MAX_LOGIN + 1];
RecInt fds_throttle = -1;
time_t ticker;
Expand Down