This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

NDK: Missing llEnter() llExit() pair in netsrv.c

Hi,

I'm using NDK 2.21.01.38 and I think there is a llEnter() / llExit() pair missing within SPIpNet():

/* BUG FIX SDSCM00014560 
*  When an IP address is modified we need to close the sockets of all existing
*  applications. */
{
    llEnter();
    SockCleanPcb (SOCKPROT_TCP, pi->IPAddr);
    SockCleanPcb (SOCKPROT_UDP, pi->IPAddr);
    SockCleanPcb (SOCKPROT_RAW, pi->IPAddr);
    llExit();
}

Thanks,
Ralf