esp_http_server: Fixed a bug which could cause issues with LRU purge Closes IDFGH-2680 See merge request espressif/esp-idf!8818
@@ -202,7 +202,7 @@ static int fd_is_valid(int fd)
static inline uint64_t httpd_sess_get_lru_counter(void)
{
static uint64_t lru_counter = 0;
- return lru_counter++;
+ return ++lru_counter;
}
void httpd_sess_delete_invalid(struct httpd_data *hd)