diff options
Diffstat (limited to 'src/scripting/script.cpp')
-rw-r--r-- | src/scripting/script.cpp | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/scripting/script.cpp b/src/scripting/script.cpp index 01d237f..fe3c5d8 100644 --- a/src/scripting/script.cpp +++ b/src/scripting/script.cpp @@ -27,6 +27,8 @@ #include <cstdlib> #include <map> +#include <string.h> + typedef std::map< std::string, Script::Factory > Engines; static Engines *engines = NULL; @@ -70,15 +72,22 @@ void Script::update() execute(); } +static char *skipPotentialBom(char *text) +{ + // Based on the C version of bomstrip + const char * const utf8Bom = "\xef\xbb\xbf"; + const int bomLength = strlen(utf8Bom); + return (strncmp(text, utf8Bom, bomLength) == 0) ? text + bomLength : text; +} + bool Script::loadFile(const std::string &name) { int size; - // Note: The file is checked for UTF-8 BOM. - char *buffer = ResourceManager::loadFile(name, size, true); + char *buffer = ResourceManager::loadFile(name, size); if (buffer) { mScriptFile = name; - load(buffer); + load(skipPotentialBom(buffer)); free(buffer); return true; } else { |