diff mbox series

[BlueZ,v1] l2test: replace sprintf() with snprintf() in recv_mode()

Message ID 20240628130142.549979-1-r.smirnov@omp.ru
State New
Headers show
Series [BlueZ,v1] l2test: replace sprintf() with snprintf() in recv_mode() | expand

Commit Message

Roman Smirnov June 28, 2024, 1:01 p.m. UTC
Use snprintf() instead of sprintf() to avoid buffer overflow.

Found with the SVACE static analysis tool
---
 tools/l2test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tools/l2test.c b/tools/l2test.c
index 7b6c36e16..4c2296899 100644
--- a/tools/l2test.c
+++ b/tools/l2test.c
@@ -913,7 +913,7 @@  static void recv_mode(int sk)
 					timestamp = 0;
 					memset(ts, 0, sizeof(ts));
 				} else {
-					sprintf(ts, "[%lld.%lld] ",
+					snprintf(ts, sizeof(ts), "[%lld.%lld] ",
 							(long long)tv.tv_sec,
 							(long long)tv.tv_usec);
 				}