You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.5 KiB
45 lines
1.5 KiB
2 years ago
|
From a521f942d5c304bca7c61bacb3c79e565853718e Mon Sep 17 00:00:00 2001
|
||
|
From: Yu Watanabe <watanabe.yu+github@gmail.com>
|
||
|
Date: Thu, 7 Jul 2022 18:27:02 +0900
|
||
|
Subject: [PATCH] time-util: fix buffer-over-run
|
||
|
|
||
|
Fixes #23928.
|
||
|
|
||
|
(cherry picked from commit 9102c625a673a3246d7e73d8737f3494446bad4e)
|
||
|
|
||
|
Resolves: #2139391
|
||
|
---
|
||
|
src/basic/time-util.c | 2 +-
|
||
|
src/test/test-time-util.c | 5 +++++
|
||
|
2 files changed, 6 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/basic/time-util.c b/src/basic/time-util.c
|
||
|
index c36e462193..d46d884be5 100644
|
||
|
--- a/src/basic/time-util.c
|
||
|
+++ b/src/basic/time-util.c
|
||
|
@@ -515,7 +515,7 @@ char *format_timespan(char *buf, size_t l, usec_t t, usec_t accuracy) {
|
||
|
t = b;
|
||
|
}
|
||
|
|
||
|
- n = MIN((size_t) k, l);
|
||
|
+ n = MIN((size_t) k, l-1);
|
||
|
|
||
|
l -= n;
|
||
|
p += n;
|
||
|
diff --git a/src/test/test-time-util.c b/src/test/test-time-util.c
|
||
|
index 354a01dd1a..6ebde4153c 100644
|
||
|
--- a/src/test/test-time-util.c
|
||
|
+++ b/src/test/test-time-util.c
|
||
|
@@ -187,6 +187,11 @@ static void test_format_timespan(usec_t accuracy) {
|
||
|
test_format_timespan_one(500 * USEC_PER_MSEC, accuracy);
|
||
|
test_format_timespan_one(9*USEC_PER_YEAR/5 - 23, accuracy);
|
||
|
test_format_timespan_one(USEC_INFINITY, accuracy);
|
||
|
+
|
||
|
+ /* See issue #23928. */
|
||
|
+ _cleanup_free_ char *buf;
|
||
|
+ assert_se(buf = new(char, 5));
|
||
|
+ assert_se(buf == format_timespan(buf, 5, 100005, 1000));
|
||
|
}
|
||
|
|
||
|
static void test_timezone_is_valid(void) {
|