Changeset 7576
- Timestamp:
- 05/12/08 11:20:41 (2 months ago)
- Files:
-
- branches/branch-5-0/mapserver/HISTORY.TXT (modified) (1 diff)
- branches/branch-5-0/mapserver/mappostgis.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/branch-5-0/mapserver/HISTORY.TXT
r7571 r7576 23 23 24 24 - mappostgis.c: Fixed overlapping transactions causing core 25 dump in fcgi (#2497 )25 dump in fcgi (#2497, #2613) 26 26 27 27 - mapagg.cpp: Fixed rendering of non filled vector symbols (#2585) branches/branch-5-0/mapserver/mappostgis.c
r7559 r7576 700 700 if(query_result) { 701 701 PQclear(query_result); 702 } 702 } else { 703 if (msPOSTGISSanitizeConnection(layerinfo->conn) != MS_SUCCESS) 704 { 705 return MS_FAILURE; 706 } 707 } 703 708 704 709 layerinfo->cursor_name[0] = '\0'; … … 1434 1439 if(query_result) { 1435 1440 PQclear(query_result); 1436 } 1441 } else { 1442 msPOSTGISSanitizeConnection(layerinfo->conn); 1443 } 1437 1444 1438 1445 free(sql); … … 1612 1619 } 1613 1620 free(tmp2); 1621 msPOSTGISSanitizeConnection(layerinfo->conn); 1614 1622 return(MS_FAILURE); 1615 1623 … … 1759 1767 free(tmp2); 1760 1768 free(sql); 1769 msPOSTGISSanitizeConnection(layerinfo->conn); 1761 1770 return(MS_FAILURE); 1762 1771
