Преглед на файлове

enet_peer_receive channelID fix

eihrul преди 15 години
родител
ревизия
94a1e8879f
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  1. 2 1
      peer.c

+ 2 - 1
peer.c

@@ -218,7 +218,8 @@ enet_peer_receive (ENetPeer * peer, enet_uint8 * channelID)
 
    incomingCommand = (ENetIncomingCommand *) enet_list_remove (enet_list_begin (& peer -> dispatchedCommands));
 
-   * channelID = incomingCommand -> command.header.channelID;
+   if (channelID != NULL)
+     * channelID = incomingCommand -> command.header.channelID;
 
    packet = incomingCommand -> packet;