Browse Source

Fix crash modbus_new_rtu when baud is 0

Daniel Schürmann 11 years ago
parent
commit
b7ed06a445
1 changed files with 7 additions and 0 deletions
  1. 7 0
      src/modbus-rtu.c

+ 7 - 0
src/modbus-rtu.c

@@ -1146,6 +1146,13 @@ modbus_t* modbus_new_rtu(const char *device,
     modbus_t *ctx;
     modbus_rtu_t *ctx_rtu;
 
+    /* Check baud argument */
+    if (baud == 0) {
+        fprintf(stderr, "baud must not be zero\n");
+        errno = EINVAL;
+        return NULL;
+    }
+
     ctx = (modbus_t *) malloc(sizeof(modbus_t));
     _modbus_init_common(ctx);
     ctx->backend = &_modbus_rtu_backend;