FAT32: fail if computing the 8.3 filename goes wrong

This commit is contained in:
mintsuki 2020-07-08 04:33:54 +02:00
parent bb96bab7f6
commit 1bbe7f9385
2 changed files with 5 additions and 5 deletions

Binary file not shown.

View File

@ -123,7 +123,7 @@ static void fat32_lfncpy(char* destination, const void* source, unsigned int siz
}
}
static void fat32_filename_to_8_3(char *dest, const char *src) {
static bool fat32_filename_to_8_3(char *dest, const char *src) {
int i = 0, j = 0;
bool ext = false;
@ -131,7 +131,7 @@ static void fat32_filename_to_8_3(char *dest, const char *src) {
if (src[i] == '.') {
if (ext) {
// This is a double extension here, just give up.
return;
return false;
}
ext = true;
// Pad the rest of the base filename with spaces
@ -142,11 +142,12 @@ static void fat32_filename_to_8_3(char *dest, const char *src) {
}
if (j >= 8+3 || (j >= 8 && !ext)) {
// Filename too long, give up.
return;
return false;
}
dest[j++] = toupper(src[i++]);
}
return true;
}
static int fat32_open_in(struct fat32_context* context, struct fat32_directory_entry* directory, struct fat32_directory_entry* file, const char* name) {
@ -203,8 +204,7 @@ static int fat32_open_in(struct fat32_context* context, struct fat32_directory_e
}
} else {
char fn[8+3];
fat32_filename_to_8_3(fn, name);
if (!strncmp(directory_entries[i].file_name_and_ext, fn, 8+3)) {
if (fat32_filename_to_8_3(fn, name) && !strncmp(directory_entries[i].file_name_and_ext, fn, 8+3)) {
*file = directory_entries[i];
return 0;
}