diff options
Diffstat (limited to 'lib/neardal.c')
-rw-r--r-- | lib/neardal.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/neardal.c b/lib/neardal.c index 7866e3d..2c52cd7 100644 --- a/lib/neardal.c +++ b/lib/neardal.c @@ -972,19 +972,6 @@ errorCode_t neardal_get_records(char *tag, char ***array, int *len) return *len ? NEARDAL_SUCCESS : NEARDAL_ERROR_NO_RECORD; } -/***************************************************************************** - * neardal_free_record: Release memory allocated for properties of a record - ****************************************************************************/ -void neardal_free_record(neardal_record *record) -{ - if (record == NULL) { - NEARDAL_TRACE_ERR("Record provided is NULL!\n"); - return; - } - - neardal_record_free(record); -} - errorCode_t neardal_get_record_properties(const char *name, neardal_record **record) { |