qemu-block
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v2 01/13] ui/console-vc: Replace sprintf() by snprintf()


From: Richard Henderson
Subject: Re: [PATCH v2 01/13] ui/console-vc: Replace sprintf() by snprintf()
Date: Thu, 11 Apr 2024 12:27:41 -0700
User-agent: Mozilla Thunderbird

On 4/11/24 03:15, Philippe Mathieu-Daudé wrote:
sprintf() is deprecated on Darwin since macOS 13.0 / XCode 14.1,
resulting in painful developper experience.

Replace sprintf() by snprintf() in order to avoid:

   [702/1310] Compiling C object libcommon.fa.p/ui_console-vc.c.o
   ui/console-vc.c:824:21: warning: 'sprintf' is deprecated:
     This function is provided for compatibility reasons only.
     Due to security concerns inherent in the design of sprintf(3),
     it is highly recommended that you use snprintf(3) instead.
     [-Wdeprecated-declarations]
                     sprintf(response, "\033[%d;%dR",
                     ^
   1 warning generated.

Signed-off-by: Philippe Mathieu-Daudé<philmd@linaro.org>
---
  ui/console-vc.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~



reply via email to

[Prev in Thread] Current Thread [Next in Thread]