aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbuff.c
AgeCommit message (Expand)AuthorFilesLines
2013-03-02From Ed Beroset via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 :Pascal Quantin1-25/+25
2013-02-26Fix spelling/typos found using a list of commonly misspelled words.Bill Meier1-2/+2
2013-02-24compute_offset_length(), check_offset_length_no_exception(), andGuy Harris1-37/+35
2013-02-24tvb_set_subset_no_exceptions() is called immediately after all calls toGuy Harris1-16/+10
2013-02-24Move some routines around, in preparation for some other codeGuy Harris1-78/+78
2013-02-20Fix copy-and-pasteo.Guy Harris1-1/+1
2013-02-20Add a tvb_new_subset_length() that takes a tvbuff, an offset in aGuy Harris1-0/+37
2013-02-20Swallow up tvb_set_real_data_no_exceptions() into tvb_new_real_data() -Guy Harris1-10/+4
2013-02-20No more tvb_new(), so no more need for tvb_set_real_data() orGuy Harris1-29/+0
2013-02-19Make tvb_new() an internal routine to epan/tvbuff.c; we export variousGuy Harris1-1/+1
2012-12-22check the length parameter for tvb_get_unicode_string() andMartin Kaiser1-0/+4
2012-12-16Another composite-TVB fix inspired byJeff Morriss1-0/+6
2012-12-16As suggested by Evan in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8...Jeff Morriss1-0/+3
2012-12-16A different fix for https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8097 :Jeff Morriss1-27/+38
2012-12-16DISSECTOR_ASSERT on member_length when composing a disjoint tvb in order toEvan Huus1-0/+1
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
2012-06-14Add some explation about buffer size.Jakub Zawadzki1-0/+2
2012-06-14Optimize tvb_*_unicode functions.Jakub Zawadzki1-40/+5
2012-05-15Assign some variables that scan-build was complaining about.Gerald Combs1-1/+1
2012-05-15Make the encoding argument uniformly guint rather than gint.Guy Harris1-30/+92
2012-05-14tvb_unicode_strsize() returns number of bytes, NOT number of UCS-2 characters.Jakub Zawadzki1-2/+2
2012-05-14Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-3/+3
2012-05-11Add ENC_UTF_16 and ENC_UCS_2. Note that UTF-16 and UCS-2 are not theGuy Harris1-5/+69
2012-04-20From Evan Huus: Use Add DISSECTOR_ASSERT_HINT() macro. https://bugs.wireshark...Anders Broman1-2/+2
2012-04-18Fix some: 'cast discards qualifiers from pointer target type' warningsJakub Zawadzki1-3/+2
2012-04-12From Martin Kaiser: CID 525 is about tvb_new_octet_aligned(). datalen can be ...Anders Broman1-0/+1
2012-04-06Clamp a value as suggested by Mike Morrin in bug 6878.Gerald Combs1-1/+1
2012-04-04Make bit_offset in _tvb_get_bits64 and related functions unsigned. ThisGerald Combs1-12/+12
2012-03-31These buffers in tvb_uncompress() can't ovelaps, so use optimized memcpy().Jakub Zawadzki1-4/+3
2012-03-31Fix for bug #6480 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6480)Jakub Zawadzki1-1/+11
2012-02-28From Mike Morrin: Fix for "The previous patch had an error and was returning ...Bill Meier1-84/+96
2012-02-28Initialize "value" in _tvb_get_bits64(). Clean up indentation.Guy Harris1-1/+2
2012-02-28Fix several messages of type:Jörg Mayer1-6/+6
2012-02-28From Mike Morrin:Anders Broman1-214/+96
2012-01-13Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-1/+1
2011-12-22(Trivial) Indentation, whitespace & formatting cleanup.Bill Meier1-381/+383
2011-12-21A simplified version of tvbuffs:Bill Meier1-104/+87
2011-10-23Add a comment about tvb_get_ephemeral_faked_unicode() has been replaced by tv...Bill Meier1-0/+1
2011-10-03tvb_get_bits{16,32,64} get passed encoding values. Rename the argumentGuy Harris1-9/+21
2011-09-26Yet another bug fix from Pascal.Anders Broman1-1/+1
2011-09-26Another bug fix from Pascal.Anders Broman1-1/+1
2011-09-26From Pascal Quantin:Anders Broman1-7/+25
2011-09-26Move tvb_new_octet_aligned() to tvbuff.c and use it.Anders Broman1-0/+48
2011-07-11More GLIB_CHECK_VERSION cleanups. Update the minimum GLib/GTK+ versionsGerald Combs1-36/+0
2011-07-05Add some additional routine variants that handle string encodings, andGuy Harris1-7/+26
2011-07-03Add a tvb_get_ephemeral_string_enc() routine that's likeGuy Harris1-5/+17
2011-06-16Squelch some compiler warnings.Guy Harris1-1/+1
2011-05-27Make TVBs opaque for most users.Jeff Morriss1-1/+14
2011-05-18Fix tvb_get_bits_buf for LSB.Jakub Zawadzki1-3/+8