Fix a comment typo: tvb_bcd_dig_to_wmem_packet_str() returns a WMEM-allocated

string, not an EP-allocated one.

Change-Id: I3918ed66429c588d4503d98e10dc460b099e550e
Reviewed-on: https://code.wireshark.org/review/3795
Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com>
This commit is contained in:
Jeff Morriss 2014-08-22 14:39:42 -04:00
parent 28acde1333
commit 923ba9d312
1 changed files with 3 additions and 3 deletions

View File

@ -846,9 +846,9 @@ WS_DLL_PUBLIC gchar *tvb_bytes_to_ep_str(tvbuff_t *tvb, const gint offset,
* tvbuff"), fetch BCD encoded digits from a tvbuff starting from either
* the low or high half byte, formatting the digits according to an input digit
* set, if NUL a default digit set of 0-9 returning "?" for overdecadic digits
* will be used. A pointer to the EP allocated string will be returned.
* Note a tvbuff content of 0xf is considered a 'filler' and will end the
* conversion.
* will be used. A pointer to the packet-scope (WMEM-allocated) string will
* be returned. Note a tvbuff content of 0xf is considered a 'filler' and will
* end the conversion.
*/
typedef struct dgt_set_t
{