Browse code

Update valgrind suppression rule

The previous valgrind suppression rule for wcsrtombs assumed ascii
conversion. With the clamd & clamscan change to use setlocale() to get
utf8 filenames to work in UnRAR, the wcsrtombs stack trace changed to
use utf8.

This patch supplements valgrind.supp with the new stack trace. The old
one was left in, just in case.

Micah Snyder authored on 2020/09/01 04:59:39
Showing 1 changed files
... ...
@@ -289,3 +289,11 @@
289 289
    fun:cli_binhex
290 290
    ...
291 291
 }
292
+{
293
+   unrar-wcsrtombs-4
294
+   Memcheck:Cond
295
+   fun:internal_utf8_loop
296
+   fun:__gconv_transform_internal_utf8
297
+   fun:wcsrtombs
298
+   ...
299
+}