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/
This commit is contained in:
Nirbheek Chauhan 2019-05-07 20:30:24 +05:30
parent c411d0aa6d
commit cdc2a798cf

View File

@ -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);