Bug 1921458. a=dmeehan

Original Revision: https://phabricator.services.mozilla.com/D226775

Differential Revision: https://phabricator.services.mozilla.com/D227221
This commit is contained in:
Marco Bonardo 2024-11-02 13:58:36 +00:00
parent ddac3dab9d
commit 36a9e50e29
4 changed files with 5 additions and 2 deletions

View file

@ -291,6 +291,7 @@ const char* const ApplicationReputationService::kBinaryFileExtensions[] = {
//".jse", exec // JScript //".jse", exec // JScript
".ksh", // Linux shell ".ksh", // Linux shell
//".lha", //".lha",
//".library-ms", exec // Windows
//".lnk", exec // Windows //".lnk", exec // Windows
".local", // Windows ".local", // Windows
//".lpaq1", //".lpaq1",

View file

@ -121,6 +121,7 @@ static const char* const kTestFileExtensions[] = {
".js", // JavaScript script ".js", // JavaScript script
".jse", // JScript ".jse", // JScript
".ksh", // Linux shell ".ksh", // Linux shell
".library-ms", // Windows Library Files
".lnk", // Windows ".lnk", // Windows
".local", // Windows ".local", // Windows
".mad", // MS Access ".mad", // MS Access

View file

@ -72,6 +72,7 @@ const char* const sExecutableExts[] = {
#endif #endif
".js", ".js",
".jse", ".jse",
".library-ms", // Windows Library Files
".lnk", ".lnk",
".mad", // Access Module Shortcut ".mad", // Access Module Shortcut
".maf", // Access ".maf", // Access

View file

@ -8,9 +8,9 @@
#define _NS_LOCAL_FILE_COMMON_H_ #define _NS_LOCAL_FILE_COMMON_H_
#ifdef MOZ_ESR #ifdef MOZ_ESR
extern const char* const sExecutableExts[108];
#else
extern const char* const sExecutableExts[109]; extern const char* const sExecutableExts[109];
#else
extern const char* const sExecutableExts[110];
#endif #endif
#endif #endif