1. Check if during handling POST request there is explicit memory allocation(os_malloc, os_zalloc) in your web server code and make sure you free them respectively (before return, break ...)
2. Check for probable out of bound memory access (causes subsequent SKD memory management inconsistent)
especially check temp size (it's large as packet length)
3. Check for use of global variables (receive callbacks can be called concurrently and may cause race conditions)
4. Read notes and warning about using SDK APIs available in the documentation.
5. Finally use more verbose debugging info in you code so that you can localize and isolate the code section that causes memory leak.Statistics: Posted by SaeedKazemi — Mon Jan 04, 2016 9:20 pm
]]>