I get this error trying to add my socket to a socket set:
Exception thrown at 0x69702631 (SDL2_net.dll) in PROJECTNAME.exe: 0xC0000005: Access violation reading location 0x00000000.
I am not sure what I am missing. Here is the relating code.
SDL_Init(SDL_INIT_EVERYTHING);
SDLNet_Init();
IPaddress serverIP;
SDLNet_SocketSet socketSet = SDLNet_AllocSocketSet(10);
if (socketSet = NULL)
{
printf("Failed to create the socket set: %s\n", SDLNet_GetError);
}
if (SDLNet_ResolveHost(&serverIP, NULL, 1234) == -1)
{
printf("SDLNet_ResolveHost: %s \n", SDLNet_GetError());
exit(1);
}
TCPsocket serverSocket;
serverSocket = SDLNet_TCP_Open(&serverIP);
if (!serverSocket)
{
printf("SDLNet_TCP_Open: %s\n", SDLNet_GetError());
}
else
{
printf("Successfully created server socket \n");
}
int numused;
numused = SDLNet_TCP_AddSocket(socketSet, serverSocket);
if (numused == -1)
{
printf("SDLNet_Addsocket: %s \n", SDLNet_GetError());
while (1)
{
printf("1");
}
}
Any help would be appreciated.
There are several typos:
Assigning
NULL
tosocketSet
, which makes the condition false and therefore later you are using it to callSDLNet_TCP_AddSocket
with a null pointer.Missing
()
.In general, it is a good idea to enable as many warnings as possible to avoid trivial typos like these.