Skip to content

Commit

Permalink
Merge branch 'bugfix/fix_softap_beacon_memory_leak_issue' into 'master'
Browse files Browse the repository at this point in the history
esp_wifi: fix softap beacon memory leak issue

Closes WIFI-4961, IDFGH-7780, and ESPCS-878

See merge request espressif/esp-idf!21079
  • Loading branch information
jack0c committed Dec 2, 2022
2 parents 8574ec3 + b07438f commit a6982a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/esp_wifi/test_apps/wifi_connect/main/app_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "esp_heap_caps.h"

// Some resources are lazy allocated in wifi and lwip
#define TEST_MEMORY_LEAK_THRESHOLD (-4096)
#define TEST_MEMORY_LEAK_THRESHOLD (-1536)

static size_t before_free_8bit;
static size_t before_free_32bit;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "esp_heap_caps.h"

// Some resources are lazy allocated in wifi or event handler
#define TEST_MEMORY_LEAK_THRESHOLD (-4096)
#define TEST_MEMORY_LEAK_THRESHOLD (-1536)

static size_t before_free_8bit;
static size_t before_free_32bit;
Expand Down

0 comments on commit a6982a9

Please sign in to comment.