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

[tor-commits] [Git][tpo/applications/tor-browser][tor-browser-115.2.1esr-13.0-1] Bug 41995: Generated headers on Windows are not reproducible



Title: GitLab

richard pushed to branch tor-browser-115.2.1esr-13.0-1 at The Tor Project / Applications / Tor Browser

Commits:

  • 43f9dbcb
    by Pier Angelo Vendrame at 2023-09-19T01:29:25+00:00
    Bug 41995: Generated headers on Windows are not reproducible
    
    The flags optionally passed as a third parameter to DLL_BLOCKLIST_ENTRY
    are stored in a set, so they are not ordered.
    Sorting them before outputting them makes the creation of the headers
    deterministic.
    

1 changed file:

Changes:

  • toolkit/xre/dllservices/mozglue/gen_dll_blocklist_defs.py
    ... ... @@ -570,7 +570,7 @@ class DllBlocklistEntry(object):
    570 570
     
    
    571 571
             flags_str = ""
    
    572 572
     
    
    573
    -        flags = self.get_flags_list()
    
    573
    +        flags = sorted(self.get_flags_list())
    
    574 574
             if flags:
    
    575 575
                 flags_str = ", " + " | ".join(map(self.get_flag_string, flags))
    
    576 576
     
    

  • _______________________________________________
    tor-commits mailing list
    tor-commits@xxxxxxxxxxxxxxxxxxxx
    https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits