ITS#7081 fix prev commit

This commit is contained in:
Howard Chu 2011-11-04 11:32:38 -07:00
parent 3cbde28a71
commit e438122448

View File

@ -2448,9 +2448,6 @@ pcache_response(
if ( si->slimit > 0 && rs->sr_nentries >= si->slimit ) {
si->slimit_exceeded = 1;
}
if ( si->slimit_exceeded ) {
return 0;
}
/* If we haven't exceeded the limit for this query,
* build a chain of answers to store. If we hit the
@ -2500,6 +2497,9 @@ over:;
si->tail = NULL;
}
}
if ( si->slimit_exceeded ) {
return 0;
}
} else if ( rs->sr_type == REP_RESULT ) {
if ( si->count ) {