logo

etc_portage

Unnamed repository; edit this file 'description' to name the repository.

0001-TextCodec.cpp-Fix-snprintf.patch (653B)


      1 From b4b3beab5abc32b376f8bcbedae426d4fb618aea Mon Sep 17 00:00:00 2001
      2 From: "Haelwenn (lanodan) Monnier" <contact@hacktivis.me>
      3 Date: Fri, 5 Apr 2019 04:08:33 +0200
      4 Subject: [PATCH 1/9] TextCodec.cpp: Fix snprintf
      5 
      6 ---
      7  Source/WebCore/platform/text/TextCodec.cpp | 1 +
      8  1 file changed, 1 insertion(+)
      9 
     10 diff --git a/Source/WebCore/platform/text/TextCodec.cpp b/Source/WebCore/platform/text/TextCodec.cpp
     11 index 86b89cfc..4be00cee 100644
     12 --- a/Source/WebCore/platform/text/TextCodec.cpp
     13 +++ b/Source/WebCore/platform/text/TextCodec.cpp
     14 @@ -28,6 +28,7 @@
     15  #include "TextCodec.h"
     16  
     17  #include <array>
     18 +#include <stdio.h>
     19  
     20  namespace WebCore {
     21  
     22 -- 
     23 2.21.0
     24