瀏覽代碼

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;