forked from pool/nodejs-electron
- New upstream version 19.0.15 * Fixed a potential crash on WebWorker destruction. * Vulkan: Fix garbage collection vs outside-RP-only flush (CVE-2022-2854) * Vulkan: Fix xfb buffer redefine to smaller size (CVE-2022-2855) - Add reproducible-config.gypi.patch OBS-URL: https://build.opensuse.org/request/show/1000962 OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs-electron?expand=0&rev=29
12 lines
527 B
Diff
12 lines
527 B
Diff
Fix filesystem readdir order leaking into node_library_files list in /usr/include/electron/config.gypi
|
|
and a similar list compiled into the electron binary.
|
|
|
|
--- src/third_party/electron_node/tools/utils.py.old 2022-08-31 22:24:25.422512158 +0200
|
|
+++ src/third_party/electron_node/tools/utils.py 2022-09-02 08:52:51.061892033 +0200
|
|
@@ -112,4 +112,4 @@
|
|
list = glob.glob(dir+ '/**/*.' + ext, recursive=True)
|
|
if sys.platform == 'win32':
|
|
list = [ x.replace('\\', '/')for x in list]
|
|
- return list
|
|
+ return sorted(list)
|