send2vinnie / mclinker

Automatically exported from code.google.com/p/mclinker
Other
0 stars 0 forks source link

potential non-initialized variable usage in the MurmurHash3 structure #159

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hello,

There is a potential non-initialized variable usage 
in the include/mcld/LD/Archive.h file. 
See 'size_t h;' occurrences in the code snippet below:
  struct MurmurHash3
  {
    size_t operator()(uint32_t pKey) const
    {
      size_t h;
      h ^= h >> 16;

Regards,
Dmitry

Original issue reported on code.google.com by Dmitry.V...@gmail.com on 21 Aug 2013 at 11:17

GoogleCodeExporter commented 9 years ago
Hi,

It is fixed at Revision eacfbac2764876
Would you mind to let us know where do you see the code? I'm so interesting in 
who and where uses MCLinker.

https://code.google.com/p/mclinker/source/detail?r=eacfbac2764876323663c76f958d2
5121a4a89e9&path=/include/mcld/LD/Archive.h

Original comment by LubaTang on 21 Aug 2013 at 11:55

GoogleCodeExporter commented 9 years ago
Hello,

I saw the code in the repository derived from Google AOSP.

Regards,
Dmitry

Original comment by Dmitry.V...@gmail.com on 21 Aug 2013 at 12:08