MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / free_raw_fetch

Function free_raw_fetch

cachedb/cachedb.c:768–781  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

766}
767
768void free_raw_fetch(cdb_raw_entry **reply, int num_cols, int num_rows)
769{
770 int i,j;
771
772 for (i=0;i<num_rows;i++) {
773 for (j=0;j<num_cols;j++) {
774 if (reply[i][j].type == CDB_STR)
775 pkg_free(reply[i][j].val.s.s);
776 }
777 pkg_free(reply[i]);
778 }
779
780 pkg_free(reply);
781}

Callers 1

w_cache_raw_queryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected