| 455 | } |
| 456 | |
| 457 | RecErrT |
| 458 | RecGetRecordString_Xmalloc(const char *name, RecString *rec_string, bool lock) |
| 459 | { |
| 460 | RecErrT err; |
| 461 | RecData data; |
| 462 | |
| 463 | if ((err = RecGetRecord_Xmalloc(name, RECD_STRING, &data, lock)) == REC_ERR_OKAY) { |
| 464 | *rec_string = data.rec_string; |
| 465 | } |
| 466 | return err; |
| 467 | } |
| 468 | |
| 469 | RecErrT |
| 470 | RecGetRecordCounter(const char *name, RecCounter *rec_counter, bool lock) |
no test coverage detected