Skip to content
Snippets Groups Projects
Commit e41c68ae authored by Morris Jette's avatar Morris Jette
Browse files

parse_time: always initialize the (fallback) display format

This fixes a segfault that can happen when the user supplies an ill-formatted
SLURM_TIME_FORMAT string. Fixed by always initializing the display_fmt string.

Instead of segfaulting, the response now uses the fallback:
01_BUG-Fix_parse_time_segfault.diff from Gerrit Renker, CSCS.
parent 9e03149d
No related branches found
No related tags found
No related merge requests found
...@@ -600,17 +600,18 @@ slurm_make_time_str (time_t *time, char *string, int size) ...@@ -600,17 +600,18 @@ slurm_make_time_str (time_t *time, char *string, int size)
if (!display_fmt) { if (!display_fmt) {
char *fmt = getenv("SLURM_TIME_FORMAT"); char *fmt = getenv("SLURM_TIME_FORMAT");
if ((!fmt) || (!*fmt) || (!strcmp(fmt, "standard"))) { #if defined USE_ISO_8601/*
#if defined USE_ISO_8601 /* * ISO-8601 Standard Format YYYY-MM-DDTHH:MM:SS
* ISO-8601 Standard Format YYYY-MM-DDTHH:MM:SS * NOTE: This is expected to break Maui, Moab
* NOTE: This is expected to break Maui, Moab * and LSF schedulers management of SLURM.
* and LSF schedulers management of SLURM. */
*/ display_fmt = "%FT%T";
display_fmt = "%FT%T";
#else #else
/* Format MM/DD-HH:MM:SS */ /* Format MM/DD-HH:MM:SS */
display_fmt = "%m/%d-%T"; display_fmt = "%m/%d-%T";
#endif #endif
if ((!fmt) || (!*fmt) || (!strcmp(fmt, "standard"))) {
;
} else if (strcmp(fmt, "relative") == 0) { } else if (strcmp(fmt, "relative") == 0) {
use_relative_format = true; use_relative_format = true;
} else if ((strchr(fmt, '%') == NULL) || } else if ((strchr(fmt, '%') == NULL) ||
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment