Changed a cast (from guint to guint64) in a call to gtk_tree_store_set(). The data is actually

64-bit, and was being fetched that way - but not stored that way - leading to some very strange
(and large) values.

Change-Id: I2235ae7f1bab7f48f99afac70109a7d8f9b38e2b
Reviewed-on: https://code.wireshark.org/review/2468
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
This commit is contained in:
dameiss 2014-06-19 15:43:21 -07:00 committed by Pascal Quantin
parent 84777a682d
commit db0e534ebd
1 changed files with 1 additions and 1 deletions

View File

@ -598,7 +598,7 @@ static gboolean lbmc_stream_dlg_tap_packet(void * tap_data, packet_info * pinfo,
LBMC_STREAM_DLG_STORE_BYTES_COLUMN, (guint)0,
LBMC_STREAM_DLG_STORE_FIRST_FRAME_COLUMN, (guint)0,
LBMC_STREAM_DLG_STORE_LAST_FRAME_COLUMN, (guint)0,
LBMC_STREAM_DLG_STORE_CHANNEL_COLUMN, (guint)stream->channel,
LBMC_STREAM_DLG_STORE_CHANNEL_COLUMN, (guint64)stream->channel,
LBMC_STREAM_DLG_STORE_SUBSTREAM_COLUMN, (guint)0,
-1);
}