summaryrefslogtreecommitdiff
path: root/lib/rbcodec/metadata/asf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/metadata/asf.c')
-rw-r--r--lib/rbcodec/metadata/asf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rbcodec/metadata/asf.c b/lib/rbcodec/metadata/asf.c
index b578746658..06f7470a69 100644
--- a/lib/rbcodec/metadata/asf.c
+++ b/lib/rbcodec/metadata/asf.c
@@ -129,9 +129,9 @@ static int asf_intdecode(int fd, int type, int length)
129{ 129{
130 int bytes = 0; 130 int bytes = 0;
131 int ret; 131 int ret;
132 uint16_t tmp16; 132 uint16_t tmp16 = 0;
133 uint32_t tmp32; 133 uint32_t tmp32 = 0;
134 uint64_t tmp64; 134 uint64_t tmp64 = 0;
135 135
136 if (type == 3) { 136 if (type == 3) {
137 bytes = read_uint32le(fd, &tmp32); 137 bytes = read_uint32le(fd, &tmp32);