Fixed memset_chk compiler errors. (Denis Pynkin)

git-svn-id: svn://opensvn.adaptivecomputing.com/maui/trunk@130 3f5042e3-fb1d-0410-be18-d6ca2573e517
This commit is contained in:
bchristiansen 2010-02-23 17:46:36 +00:00
parent eb911536f1
commit 0921a1ef39
2 changed files with 2 additions and 2 deletions

View File

@ -2706,7 +2706,7 @@ int MSRProcessOConfig(
char *TokPtr;
int index;
int FMap[MAX_MATTR >> 5];
int FMap[(MAX_MATTR >> 5) + 1];
MUBMClear(FMap,MAX_MATTR);

View File

@ -5557,7 +5557,7 @@ int MUIJobSetAttr(
{
mqos_t *Q;
int QAL[MAX_MQOS >> 5];
int QAL[(MAX_MQOS >> 5) + 1];
if (!(CFlags & ((1 << fAdmin1) | (1 << fAdmin2))) &&
(JobOwner == FALSE))