| 982 | } |
| 983 | |
| 984 | RecString |
| 985 | REC_readString(const char *name, bool *found, bool lock) |
| 986 | { |
| 987 | ink_assert(name); |
| 988 | RecString _tmp = nullptr; |
| 989 | bool _found = (RecGetRecordString_Xmalloc(name, &_tmp, lock) == REC_ERR_OKAY); |
| 990 | |
| 991 | if (found) { |
| 992 | *found = _found; |
| 993 | } |
| 994 | return _tmp; |
| 995 | } |
| 996 | |
| 997 | //------------------------------------------------------------------------- |
| 998 | // RecConfigReadConfigDir |
no test coverage detected