1. 15 Jan, 2021 29 commits
  2. 30 Dec, 2020 1 commit
  3. 10 Dec, 2020 1 commit
    • Mike Gabriel's avatar
      CVE-2020-14360: Check SetMap request length carefully. · d5a3b440
      Mike Gabriel authored
        Backported from X.org:
      
        From 446ff2d3177087b8173fa779fa5b77a2a128988b Mon Sep 17 00:00:00 2001
        From: Matthieu Herrb <matthieu@herrb.eu>
        Date: Thu, 12 Nov 2020 19:15:07 +0100
        Subject: [PATCH] Check SetMap request length carefully.
      
        Avoid out of bounds memory accesses on too short request.
      
        ZDI-CAN 11572 /  CVE-2020-14360
      
        This vulnerability was discovered by:
        Jan-Niklas Sohn working with Trend Micro Zero Day Initiative
      
        Fixes ArcticaProject/nx-libs#972.
      d5a3b440
  4. 03 Dec, 2020 1 commit
  5. 04 Nov, 2020 6 commits
  6. 03 Nov, 2020 2 commits
    • Ulrich Sibiller's avatar
      Clipboard.c: fix bug in special optimization for nested settings · b07b6c53
      Ulrich Sibiller authored
      Fixes ArcticaProject/nx-libs#941
      b07b6c53
    • Ulrich Sibiller's avatar
      compext/Png.c: fix shadowing · 522eea6f
      Ulrich Sibiller authored
      Png.c: In function ‘PngWriteData’:
      Png.c:603:38: warning: declaration of ‘png_ptr’ shadows a global declaration [-Wshadow]
        603 | static void PngWriteData(png_structp png_ptr, png_bytep data, png_size_t length)
            |                          ~~~~~~~~~~~~^~~~~~~
      Png.c:77:13: note: shadowed declaration is here
         77 | png_structp png_ptr;
            |             ^~~~~~~
      Png.c: In function ‘PngFlushData’:
      Png.c:610:38: warning: declaration of ‘png_ptr’ shadows a global declaration [-Wshadow]
        610 | static void PngFlushData(png_structp png_ptr)
            |                          ~~~~~~~~~~~~^~~~~~~
      Png.c:77:13: note: shadowed declaration is here
         77 | png_structp png_ptr;
            |             ^~~~~~~
      522eea6f