summaryrefslogtreecommitdiff
path: root/source/rpc_parse/parse_prs.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/rpc_parse/parse_prs.c')
-rw-r--r--source/rpc_parse/parse_prs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/rpc_parse/parse_prs.c b/source/rpc_parse/parse_prs.c
index e8f30d32f7d..2a2d4ebe98b 100644
--- a/source/rpc_parse/parse_prs.c
+++ b/source/rpc_parse/parse_prs.c
@@ -292,7 +292,7 @@ void prs_free_data(prs_struct * buf)
if (buf->data != NULL)
{
CHECK_STRUCT(buf);
- free(buf->data); /* delete data in this structure */
+ safe_free(buf->data); /* delete data in this structure */
buf->data = NULL;
}
buf->data_size = 0;