https://issues.apache.org/ooo/show_bug.cgi?id=120108
--- Comment #1 from ChaoHuang <[email protected]> --- In the first loop of function "ScViewData::ReadUserDataSequence", pTabData[nTab] will be reassigned to a new obj on heap. If the previous value is not NULL, there will be no place to release the previous obj. So it may be a memory leak. The solution is to check the pTabData[nTab] and free it if possible before reassignment. -- You are receiving this mail because: You are the assignee for the bug.
