Explorar o código

- All attributes of db_val_t set to 0 when the null attribute is set.

Jan Janak %!s(int64=21) %!d(string=hai) anos
pai
achega
cacef05f7a
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      modules/db_mysql/val.c

+ 1 - 0
modules/db_mysql/val.c

@@ -138,6 +138,7 @@ int str2val(db_type_t _t, db_val_t* _v, const char* _s, int _l)
 	}
 
 	if (!_s) {
+		memset(_v, 0, sizeof(db_val_t));
 		VAL_TYPE(_v) = _t;
 		VAL_NULL(_v) = 1;
 		return 0;