commit | 5b78f219d078281ab7e0778ca56372671b0a5b46 | [log] [download] |
---|---|---|
author | Alfred Klomp <git@alfredklomp.com> | Mon Jul 14 22:10:14 2014 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu Aug 14 11:34:34 2014 +0200 |
tree | d580d0e45656240a49ceb957e0303ffd323f7d92 | |
parent | 1d42b3ea7ebe64c02a156043e2b3adc92458daac [diff] |
ssl_test.c: remove dead store, assign at declaration Found with Clang's `scan-build` tool. The store to `ret` is not used, it's overwritten shortly after. Assign the value of 1 at declaration time instead to silence scan-build.