]> git.pld-linux.org Git - packages/flac.git/blame - crbug-111390.patch
Fix -Werror=format-security errors. rebased for current tree
[packages/flac.git] / crbug-111390.patch
CommitLineData
5f0f203e
ER
1chrome fixes
2https://code.google.com/p/chromium/issues/detail?id=111390
3
4also in upstream:c
5http://git.xiph.org/?p=flac.git;a=commitdiff;h=6c8d740c1a0bf01605bdd05fe6765ff841dd082a
6http://git.xiph.org/?p=flac.git;a=commitdiff;h=19e3918d4e35f4ab99e7fcc58c169025c576dd16
7--- flac-1.2.1/src/libFLAC/md5.c 2007-09-10 23:49:47.000000000 +0000
8+++ ../chromium-browser-23.0.1271.64/src/third_party/flac/src/libFLAC/md5.c 2012-10-31 19:03:12.000000000 +0000
9@@ -263,12 +263,12 @@
10
11 byteSwap(ctx->buf, 4);
12 memcpy(digest, ctx->buf, 16);
13- memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */
14 if(0 != ctx->internal_buf) {
15 free(ctx->internal_buf);
16 ctx->internal_buf = 0;
17 ctx->capacity = 0;
18 }
19+ memset(ctx, 0, sizeof(*ctx)); /* In case it's sensitive */
20 }
21
22 /*
This page took 0.055433 seconds and 4 git commands to generate.