]> git.pld-linux.org Git - packages/flac.git/blob - crbug-111390.patch
5886772ac2cac53af89b1a914821432306418ec0
[packages/flac.git] / crbug-111390.patch
1 chrome fixes
2 https://code.google.com/p/chromium/issues/detail?id=111390
3
4 also in upstream:c
5 http://git.xiph.org/?p=flac.git;a=commitdiff;h=6c8d740c1a0bf01605bdd05fe6765ff841dd082a
6 http://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.067724 seconds and 2 git commands to generate.