gcc -O3 is agressive enough to detect that do_cons() doesn't always
set the value of rlen2, so trval2() gets a maybe-uninitialized
warning. Squash it by initializing rlen2.
ticket: 7088
target_version: 1.10.1
tags: pullup
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25679
dc483132-0cff-0310-8789-
dd5450dbe970
int lev;
int *rlen;
{
- int l, eid, elen, xlen, r, rlen2;
+ int l, eid, elen, xlen, r, rlen2 = 0;
int rlen_ext = 0;
r = OK;