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

DISPATCH-1262: fix GCC 8.2 format-truncation error in router/src/main.c #448

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion router/src/main.c
Expand Up @@ -189,7 +189,7 @@ static void daemon_process(const char *config_path, const char *python_pkgdir, b
int getcwd_error = 0;
cur_path = (char *) calloc(path_size, sizeof(char));

while ( getcwd(cur_path, path_size) == NULL ) {
while ((cur_path = getcwd(cur_path, path_size)) == NULL) {
free(cur_path);
if ( errno != ERANGE ) {
// If unable to get current directory
Expand Down