mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 17:49:10 -04:00
ESP_STATIC_ANALYZER_CHECK was added to remove some static analyzer warning about null pointer dereferences that should never happen, but the logic was wrong. We return pdFALSE if prvReceiveGeneric was called with any of the input pointers as NULL, but pvItem2 and xItemSize2 will only be non-null for split buffers. Closes https://github.com/espressif/esp-idf/issues/14905