diff options
-rw-r--r-- | file.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -265,12 +265,8 @@ static int open_by_filename(const char *filename, const char *fmt, struct memblo return try_to_open_zip(filename, mem, error); /* CSV files */ - if (!strcasecmp(fmt, "CSV")) { - int len = strlen(translate("gettextFromC","Failed to read '%s'. Use import for CSV files.")) + strlen(filename); - *error = malloc(len); - snprintf(*error, len, translate("gettextFromC","Failed to read '%s'. Use import for CSV files."), filename); + if (!strcasecmp(fmt, "CSV")) return 1; - } #if ONCE_COCHRAN_IS_SUPPORTED /* Truly nasty intentionally obfuscated Cochran Anal software */ |