mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
components/nvs: avoid reading just-erased page
This commit is contained in:
parent
31f74b8008
commit
f06ebeba86
@ -17,7 +17,7 @@
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
#include <stdbool.h>
|
||||
#include <esp_err.h>
|
||||
#include "esp_err.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -671,7 +671,12 @@ esp_err_t Page::erase()
|
||||
mState = PageState::INVALID;
|
||||
return rc;
|
||||
}
|
||||
return load(sector);
|
||||
mUsedEntryCount = 0;
|
||||
mErasedEntryCount = 0;
|
||||
mFirstUsedEntry = INVALID_ENTRY;
|
||||
mNextFreeEntry = INVALID_ENTRY;
|
||||
mState = PageState::UNINITIALIZED;
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
esp_err_t Page::markFreeing()
|
||||
|
Loading…
x
Reference in New Issue
Block a user