summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 82b3c07..48d6e29 100644
--- a/main.c
+++ b/main.c
@@ -52,7 +52,7 @@ int main() {
52 if (ev.type == SDL_QUIT) exit(0); 52 if (ev.type == SDL_QUIT) exit(0);
53 53
54 size_t received = recvfrom(sock_in, inbuf, sizeof(inbuf), 0, NULL, 0); 54 size_t received = recvfrom(sock_in, inbuf, sizeof(inbuf), 0, NULL, 0);
55 if (received == -1) 55 if (received == -1 || received < sizeof(inbuf))
56 continue; 56 continue;
57 57
58 printf("Packet received, size: %zd\n", received); 58 printf("Packet received, size: %zd\n", received);