Merge branch 'bugfix/httpd_lru_purge_v4.0' into 'release/v4.0'
esp_http_server: Fixed a bug which could cause issues with LRU purge (v4.0) See merge request espressif/esp-idf!8833
This commit is contained in:
commit
b76773d943
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ static int fd_is_valid(int fd)
|
|||
static inline uint64_t httpd_sess_get_lru_counter()
|
||||
{
|
||||
static uint64_t lru_counter = 0;
|
||||
return lru_counter++;
|
||||
return ++lru_counter;
|
||||
}
|
||||
|
||||
void httpd_sess_delete_invalid(struct httpd_data *hd)
|
||||
|
|
Loading…
Reference in a new issue