You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Almost all ctest with starting thrift server failed.
==10683==ERROR: AddressSanitizer: new-delete-type-mismatch on 0x6130000de280 in thread T20:
object passed to delete has wrong type:
size of the allocated type: 336 bytes;
size of the deallocated type: 328 bytes.
...
The text was updated successfully, but these errors were encountered:
In short version, the problem is related to align. When request 328 bytes to allocate with align of 16, folly will allocate 336 bytes instead, see here. But when deallocate, only 328 is freed. (At least from ASAN's perspective). If you want to see some detail, read my post in confluence.
ASAN or fbthrift may have bugs, will dig more if necessary after third-party be be compiled correctly, we need to check the pointer when allocate/deallocate.
Almost all ctest with starting thrift server failed.
The text was updated successfully, but these errors were encountered: