FS-11931: [mod_http_cache] Fix zero-length gnu_printf format string

This commit is contained in:
Andrey Volk 2019-08-02 00:16:04 +04:00
parent 0e43313f79
commit bc5dad27fb
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ FST_TEST_BEGIN(test_parse_url)
fst_check(bucket == NULL);
fst_check(object == NULL);
snprintf(url, sizeof(url), "");
snprintf(url, sizeof(url), "%s", "");
parse_url(url, NULL, "s3", &bucket, &object);
fst_check(bucket == NULL);
fst_check(object == NULL);