diff --git a/src/libckpool.h b/src/libckpool.h index 03e0b69f..8b419e83 100644 --- a/src/libckpool.h +++ b/src/libckpool.h @@ -346,7 +346,7 @@ void _json_check(json_t *val, json_error_t *err, const char *file, const char *f /* No error checking with these, make sure we know they're valid already! */ static inline void json_strcpy(char *buf, json_t *val, const char *key) { - strcpy(buf, json_string_value(json_object_get(val, key))); + strcpy(buf, json_string_value(json_object_get(val, key)) ? : ""); } static inline void json_dblcpy(double *dbl, json_t *val, const char *key)