Fix a comment.

svn path=/trunk/; revision=50588
This commit is contained in:
Guy Harris 2013-07-14 19:07:09 +00:00
parent d3be9807c4
commit cc4197b1fe
1 changed files with 4 additions and 4 deletions

View File

@ -563,13 +563,13 @@ insert_fd_head(reassembly_table *table, fragment_data *fd_head,
* (with one exception) all allocated memory for matching reassembly.
*
* The exception is :
* If the PDU was already completely reassembled, then the buffer containing the
* reassembled data WILL NOT be free()d, and the pointer to that buffer will be
* If the PDU was already completely reassembled, then the tvbuff containing the
* reassembled data WILL NOT be free()d, and the pointer to that tvbuff will be
* returned.
* Othervise the function will return NULL.
*
* So, if you call fragment_delete and it returns non-NULL, YOU are responsible to
* tvb_free() that buffer.
* So, if you call fragment_delete and it returns non-NULL, YOU are responsible
* to tvb_free() that tvbuff.
*/
tvbuff_t *
fragment_delete(reassembly_table *table, const packet_info *pinfo,