소스 검색

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

Jan Janak 21 년 전
부모
커밋
cacef05f7a
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  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;