MCPcopy Index your code
hub / github.com/MapServer/MapServer / msDBFJoinClose

Function msDBFJoinClose

mapjoin.c:301–313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

299}
300
301int msDBFJoinClose(joinObj *join)
302{
303 msDBFJoinInfo *joininfo = join->joininfo;
304
305 if(!joininfo) return(MS_SUCCESS); /* already closed */
306
307 if(joininfo->hDBF) msDBFClose(joininfo->hDBF);
308 if(joininfo->target) free(joininfo->target);
309 free(joininfo);
310 joininfo = NULL;
311
312 return(MS_SUCCESS);
313}
314
315/* */
316/* CSV (comma separated value) join functions */

Callers 1

msJoinCloseFunction · 0.85

Calls 1

msDBFCloseFunction · 0.85

Tested by

no test coverage detected