aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbuff.c
AgeCommit message (Expand)AuthorFilesLines
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
2011-05-18- Optimize tvb_get_bits_bufJakub Zawadzki1-11/+41
2011-05-17Add generic tvb_get_bits_buf() which accepts any no_of_bits.Jakub Zawadzki1-0/+53
2011-05-12Fix double free. Jakub Zawadzki1-1/+1
2011-04-04From jakub Zawadzki:Anders Broman1-0/+2
2011-01-30Fix various instances of "unreachable code".Bill Meier1-2/+0
2011-01-28Mention that the fake tvb unicode functions have been supercededStephen Fisher1-0/+1
2011-01-20Fix the dead initialization warnings found by clang's static analysisStephen Fisher1-1/+1
2011-01-14Add tvb_get_[n|le]toh[40|48|56]() accessors. Addresses bug 5082.Chris Maynard1-0/+54
2011-01-12There's no need to call tvb_get_ptr() in here: just call ensure_contiguous() ...Jeff Morriss1-5/+5
2011-01-12Introduce, and start using, tvb_get_const_stringz(). This function returns aJeff Morriss1-9/+34