MSFS 2020 version 1.15.70 - any wasm module makes the sim miserably crash

Hi all,
after having updated the sim at 1.15.70 all my wasm modules make the sim crash.
All was working fine before this update.
Also all wasm samples in SDK have the same effect.
Also the simplest wasm module like this one has the same crashing effect during airplane loading.
Someone has the same issue ?

Code:

#include <MSFS/MSFS.h>
#include <MSFS/MSFS_Render.h>
#include <MSFS/Render/nanovg.h>
#include <MSFS/Legacy/gauges.h>
////////////////////////////////////////////////
extern "C" {

    MSFS_CALLBACK bool test_callback(FsContext ctx, int service_id, void* pData)
    {   
        switch (service_id)
        {
        ///////////////
        case PANEL_SERVICE_PRE_INSTALL:
        {
        }
        break;
        ////////////////////////
        case PANEL_SERVICE_POST_INSTALL:
        {
        }
        break;
        /////////////////
        case PANEL_SERVICE_PRE_DRAW:
        {
        }
        break;
        //////////////////
        case PANEL_SERVICE_PRE_KILL:
        {
        }
        break;
        //////////////////
        default:
            return false;
        } /////////////////////////
        return true;
    }
}

2 posts were merged into an existing topic: Standalone WASM - Modules crash the simulator after latest 1.15.7.0 update