Fixed authenticode.js not signing on older NodeJS versions.

This commit is contained in:
Ylian Saint-Hilaire 2022-06-09 10:40:19 -07:00
parent 8008aa9850
commit c9cf7a3d88

View File

@ -120,7 +120,7 @@ function createAuthenticodeHandler(path) {
// Open the file descriptor
obj.path = path;
try { obj.fd = fs.openSync(path); } catch (ex) { return false; } // Unable to open file
try { obj.fd = fs.openSync(path, 'r'); } catch (ex) { return false; } // Unable to open file
obj.stats = fs.fstatSync(obj.fd);
obj.filesize = obj.stats.size;
if (obj.filesize < 64) { obj.close(); return false; } // File too short.