Commit 8e851a277dc4eb64e23a88cc9de622be6aa1f252

Sylvain 2021-11-22T16:28:07

Remove malloc from comment

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/SDL_dataqueue.c b/src/SDL_dataqueue.c
index ffbb1c3..de79392 100644
--- a/src/SDL_dataqueue.c
+++ b/src/SDL_dataqueue.c
@@ -121,7 +121,7 @@ SDL_ClearDataQueue(SDL_DataQueue *queue, const size_t slack)
     queue->queued_bytes = 0;
     queue->pool = packet;
 
-    /* Optionally keep some slack in the pool to reduce malloc pressure. */
+    /* Optionally keep some slack in the pool to reduce memory allocation pressure. */
     for (i = 0; packet && (i < slackpackets); i++) {
         prev = packet;
         packet = packet->next;