reduce calls to framer.getFCAllowance

This commit is contained in:
Lucas Clemente 2016-07-12 15:01:14 +02:00
parent 58ec83c4ba
commit 38098954f4

View file

@ -145,11 +145,13 @@ func (f *streamFramer) maybePopNormalFrame(maxBytes protocol.ByteCount) (*frames
}
maxLen := maxBytes - frameHeaderBytes
fcAllowance, err := f.getFCAllowanceForStream(s)
if err != nil {
return nil, err
if s.lenOfDataForWriting() != 0 {
fcAllowance, err := f.getFCAllowanceForStream(s)
if err != nil {
return nil, err
}
maxLen = utils.MinByteCount(maxLen, fcAllowance)
}
maxLen = utils.MinByteCount(maxLen, fcAllowance)
if maxLen == 0 {
continue