mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-05 21:54:33 +02:00
spiffs: fix format-truncation warning
This commit is contained in:
@@ -667,7 +667,8 @@ static int vfs_spiffs_readdir_r(void* ctx, DIR* pdir, struct dirent* entry,
|
|||||||
}
|
}
|
||||||
entry->d_ino = 0;
|
entry->d_ino = 0;
|
||||||
entry->d_type = out.type;
|
entry->d_type = out.type;
|
||||||
snprintf(entry->d_name, SPIFFS_OBJ_NAME_LEN, "%s", item_name);
|
strncpy(entry->d_name, item_name, SPIFFS_OBJ_NAME_LEN);
|
||||||
|
entry->d_name[SPIFFS_OBJ_NAME_LEN - 1] = '\0';
|
||||||
dir->offset++;
|
dir->offset++;
|
||||||
*out_dirent = entry;
|
*out_dirent = entry;
|
||||||
return 0;
|
return 0;
|
||||||
|
Reference in New Issue
Block a user