libafs: Initialize _settok_tokenCell primary flag

Always set the *primary flag to something in _settok_tokenCell.
Otherwise, the lag may be unset, as it is not required to be
initialized by all callers.

Change-Id: I78c775f8cd70f74f6a344094a6a677cbc74f3281
Reviewed-on: http://gerrit.openafs.org/4521
Reviewed-by: Simon Wilkinson <sxw@inf.ed.ac.uk>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
Andrew Deason 2011-04-21 17:10:13 -05:00 committed by Derrick Brashear
parent ce77b0e572
commit 1b37cc8942

View File

@ -1785,6 +1785,10 @@ _settok_tokenCell(char *cellName, int *cellNum, int *primary) {
int t1; int t1;
struct cell *cell; struct cell *cell;
if (primary) {
*primary = 0;
}
if (cellName && strlen(cellName) > 0) { if (cellName && strlen(cellName) > 0) {
cell = afs_GetCellByName(cellName, READ_LOCK); cell = afs_GetCellByName(cellName, READ_LOCK);
} else { } else {