CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2014/05/31 23:12:50
Modified files: lib/libssl/src/crypto/pem: pem_lib.c Log message: Avoid the use of an uninitialised variable. In reality, this is a non-issue since the calculated value is not actually used in the uninitialised case. Change the code so that we only do the calculation if we actually need it. Issue detected by clang and reported by both brad@ and Brent Cook.