diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-11-12 15:39:28 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-11-12 15:39:28 -0500 |
commit | 1a11702a9a4d5f95c52eb55263008ce2aa8017ef (patch) | |
tree | e1e25815245dc8e2123c4cf8c71a58bc11748659 /changes | |
parent | 46796623f995c5b63d5cfbda1a038d9f6158ec90 (diff) | |
download | tor-1a11702a9a4d5f95c52eb55263008ce2aa8017ef.tar.gz tor-1a11702a9a4d5f95c52eb55263008ce2aa8017ef.zip |
Fix a compiler warning in aes.c.
Apparently some freebsd compilers can't tell that 'c' will never
be used uninitialized.
Fixes bug 28413; bugfix on 0.2.9.3-alpha when we added support for
longer AES keys to this function.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug28413 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug28413 b/changes/bug28413 new file mode 100644 index 0000000000..4c88bea7e7 --- /dev/null +++ b/changes/bug28413 @@ -0,0 +1,4 @@ + o Minor bugfixes (compilation): + - Initialize a variable in aes_new_cipher(), since some compilers + cannot tell that we always initialize it before use. Fixes bug 28413; + bugfix on 0.2.9.3-alpha. |