compositor: Fix some warning when passing debugoptimized to meson
authorMarius Vlad <marius.vlad@collabora.com>
Wed, 13 Nov 2019 09:40:26 +0000 (11:40 +0200)
committerMarius Vlad <marius.vlad@collabora.com>
Thu, 14 Nov 2019 08:54:40 +0000 (10:54 +0200)
Increase the buf size such it can accomodate sufficiently large local
buffers. Spotted whilst looking for something else.

../compositor/main.c:157:22: warning: ‘%s’ directive output may be
truncated writing up to 511 bytes into a region of size 128
[-Wformat-truncation=]
  157 |  snprintf(buf, len, "%s[%s.%03li]", datestr,
      |                      ^~             ~~~~~~~
../compositor/main.c:157:21: note: directive argument in the range
[-92233720368547759223372036854775]
  157 |  snprintf(buf, len, "%s[%s.%03li]", datestr,
      |                     ^~~~~~~~~~~~~~
../compositor/main.c:157:2: note: ‘snprintf’ output between 7 and 659
bytes into a destination of size 128
  157 |  snprintf(buf, len, "%s[%s.%03li]", datestr,
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  158 |    timestr, (tv.tv_usec / 1000));
      |    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
compositor/main.c

index 29a427b9d3910996ebc55e9b9a9fefb0e513c174..22ac8b2394770e77fcf3ba4ebb5b550abad6b231 100644 (file)
@@ -163,7 +163,7 @@ weston_log_timestamp(char *buf, size_t len)
 static void
 custom_handler(const char *fmt, va_list arg)
 {
-       char timestr[128];
+       char timestr[512];
 
        weston_log_scope_printf(log_scope, "%s libwayland: ",
                                weston_log_timestamp(timestr,