shithub: libvpx

Download patch

ref: 6044fcec3e267b1f0e4658592fc39bc0093c1d32
parent: 5ba01a5a45c8b9924c68c690d7c648593e17b21c
author: James Zern <jzern@google.com>
date: Mon Mar 3 13:40:15 EST 2014

nestegg: ne_buffer_read: quiet uint64->size_t warning

the buffer length is already a size_t making the offset into it limited

Change-Id: Ibc5352e69049186cc07f7d86117696b11a98a600

--- a/third_party/nestegg/README.webm
+++ b/third_party/nestegg/README.webm
@@ -21,3 +21,4 @@
 - ne_read_(string|binary|block): normalize size_t usage
 - ne_parse: normalize size_t usage
 - quiet read related uint64->size_t warnings
+- ne_buffer_read: quiet uint64->size_t warning
--- a/third_party/nestegg/src/nestegg.c
+++ b/third_party/nestegg/src/nestegg.c
@@ -1605,7 +1605,7 @@
   struct sniff_buffer * sb = user_data;
 
   int rv = 1;
-  size_t available = sb->length - sb->offset;
+  size_t available = sb->length - (size_t)sb->offset;
 
   if (available < length)
     return 0;