don't use NULL to initialise an integer

svn path=/trunk/; revision=22474
This commit is contained in:
Ulf Lamping 2007-08-08 23:36:48 +00:00
parent 5c86e7fd4c
commit a11feafee6
1 changed files with 2 additions and 2 deletions

View File

@ -316,8 +316,8 @@ dissect_packet(epan_dissect_t *edt, union wtap_pseudo_header *pseudo_header,
edt->pi.tcp_tree = NULL;
edt->pi.dcerpc_procedure_name="";
edt->pi.sccp_info = NULL;
edt->pi.clnp_srcref = NULL;
edt->pi.clnp_dstref = NULL;
edt->pi.clnp_srcref = 0;
edt->pi.clnp_dstref = 0;
TRY {
edt->tvb = tvb_new_real_data(pd, fd->cap_len, fd->pkt_len);