Browse Source

textops: fix not initialized variable for muti-part body

Daniel-Constantin Mierla 11 năm trước cách đây
mục cha
commit
f1178c4d0e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      modules/textops/textops.c

+ 1 - 1
modules/textops/textops.c

@@ -1546,7 +1546,7 @@ int set_multibody_helper(struct sip_msg* msg, char* p1, char* p2, char* p3)
 	str default_delimiter = {"unique-boundary-1", 17};
 	str nc = {0,0};
 	str cth = {"Content-Type: ", 14};
-	str* nbb;
+	str* nbb = NULL;
 	unsigned int convert = 0;
 	fparam_t header;
 	header.orig = NULL;