mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-12 11:01:52 +00:00
Fixed authenticode.js not signing on older NodeJS versions.
This commit is contained in:
parent
8008aa9850
commit
c9cf7a3d88
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue