Files
doris/be
airborne12 325757b411 [Fix](inverted index) fix memory leak when DorisCompoundReader strdup file name (#17062)
1. strdup(const char*) will copy a temporary char array.
2. std::string's copy construct will copy the temporary char array to std::string buffer.
3. finally the temporary char array will leak.
2023-02-24 10:15:04 +08:00
..