瀏覽代碼

Fix OMG bug in modbus_mapping_free not freeing memory

Thanks to Stefan Finzel for the bug report
Stéphane Raimbault 13 年之前
父節點
當前提交
b395db8ae9
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/modbus.c

+ 1 - 1
src/modbus.c

@@ -1562,7 +1562,7 @@ modbus_mapping_t* modbus_mapping_new(int nb_bits, int nb_input_bits,
 /* Frees the 4 arrays */
 void modbus_mapping_free(modbus_mapping_t *mb_mapping)
 {
-    if (mb_mapping != NULL) {
+    if (mb_mapping == NULL) {
         return;
     }