[glib/nirbheek/preliminary-uwp-support: 1/2] uwp: workaround a false positive in certification of glib



commit cdc2a798cfef4e2f9cc21c569f093780b55ba657
Author: Nirbheek Chauhan <nirbheek centricular com>
Date:   Tue May 7 20:30:24 2019 +0530

    uwp: workaround a false positive in certification of glib
    
    It seems that the Windows App Certification Kit searches all files and
    binaries for the regex '\<reg\>' (or something like it) and throws
    errors if it exists. Supposedly this is for preventing apps from
    running REG.EXE
    
    
https://blogs.msdn.microsoft.com/appconsult/2017/08/16/how-to-validate-if-your-application-is-compliant-with-the-windows-store-polices-windows-10-and-windows-10-s/

 gio/gregistrysettingsbackend.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/gio/gregistrysettingsbackend.c b/gio/gregistrysettingsbackend.c
index 70d391a32..26de2518c 100644
--- a/gio/gregistrysettingsbackend.c
+++ b/gio/gregistrysettingsbackend.c
@@ -408,7 +408,7 @@ registry_cache_add_item (GNode         *parent,
   item->block_count = 0;
   item->readable = FALSE;
 
-  trace ("\treg cache: adding %s to %s\n",
+  trace ("\tregistry cache: adding %s to %s\n",
          name, ((RegistryCacheItem *)parent->data)->name);
 
   cache_node = g_node_new (item);


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