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

Function msCSVJoinClose

mapjoin.c:479–494  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

477}
478
479int msCSVJoinClose(joinObj *join)
480{
481 int i;
482 msCSVJoinInfo *joininfo = join->joininfo;
483
484 if(!joininfo) return(MS_SUCCESS); /* already closed */
485
486 for(i=0; i<joininfo->numrows; i++)
487 msFreeCharArray(joininfo->rows[i], join->numitems);
488 free(joininfo->rows);
489 if(joininfo->target) free(joininfo->target);
490 free(joininfo);
491 joininfo = NULL;
492
493 return(MS_SUCCESS);
494}
495
496
497#ifdef USE_MYSQL

Callers 1

msJoinCloseFunction · 0.85

Calls 1

msFreeCharArrayFunction · 0.85

Tested by

no test coverage detected