commit | 1b8de578279c0b51ce91ba2d3e87fa14fbc003ef | [log] [download] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed May 27 16:49:37 2015 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed May 27 16:58:55 2015 +0200 |
tree | f7f1c49ba1819a08575df90e1e0470dd922e2be8 | |
parent | b2a18a2a982d292ded81d5f24deeb9724af4c557 [diff] |
Remove a few redundant memset after calloc. Using the following semantic patch provided by Mansour Moufid: @@ expression x; @@ x = mbedtls_calloc(...) ... - memset(x, 0, ...);