Переглянути джерело

disallow appending NULL elements to queue

cecylia 7 роки тому
батько
коміт
cc4b2763df
1 змінених файлів з 4 додано та 0 видалено
  1. 4 0
      relay_station/util.c

+ 4 - 0
relay_station/util.c

@@ -75,6 +75,10 @@ queue *init_queue(){
  * Function to append a struct to the end of a list
  */
 void enqueue(queue *list, void *data){
+    //Do not allow appending NULL data
+    if(data == NULL){
+        return;
+    }
     element *new_elem = emalloc(sizeof(element));
     new_elem->data = data;
     new_elem->next = NULL;