Remove superfluous assignment

svn path=/trunk/; revision=29686
This commit is contained in:
Kovarththanan Rajaratnam 2009-09-03 14:41:09 +00:00
parent bd69669e1d
commit 6be0e11906
1 changed files with 2 additions and 3 deletions

5
file.c
View File

@ -3701,10 +3701,9 @@ cf_select_packet(capture_file *cf, int row)
cf->current_row = row;
/* Create the logical protocol tree. */
if (cf->edt != NULL) {
if (cf->edt != NULL)
epan_dissect_free(cf->edt);
cf->edt = NULL;
}
/* We don't need the columns here. */
cf->edt = epan_dissect_new(TRUE, TRUE);