!5557 [MS][LITE][Develop] fix bug of arm cpu int8 op: pooling memory leak

Merge pull request !5557 from yangruoqi713/r0.7
This commit is contained in:
mindspore-ci-bot 2020-08-31 16:31:11 +08:00 committed by Gitee
commit 9d10d934c7
1 changed files with 1 additions and 0 deletions

View File

@ -58,6 +58,7 @@ void PoolingBaseCPUKernel::FreeQuantParam() {
free(*(pooling_quant_arg_ + i));
}
}
free(pooling_quant_arg_);
}
}