id summary reporter owner description type status priority milestone component version severity resolution keywords cc 2314 CPLEscapeString for CPLES_URL Badly Broken warmerdam warmerdam "CPLEscapeString() will corrupt the result for scheme CPLES_URL any time there are characters that need special encoding. The problem is that this code: {{{ if( (pszInput[iIn] >= 'a' && pszInput[iIn] <= 'z') || (pszInput[iIn] >= 'A' && pszInput[iIn] <= 'Z') || (pszInput[iIn] >= '0' && pszInput[iIn] <= '9') || pszInput[iIn] == '_' ) { pszOutput[iOut++] = pszInput[iIn]; } else { sprintf( pszOutput, ""%%%02X"", pszInput[iIn] ); iOut += 3; } }}} is sprintf()ing at the beginning of pszOutput, instead of appending. The problem seems to occur back as far as the GDAL 1.4 branch though it isn't clear that this functionality is widely used. It does affect the dev branch of the wcs driver. " defect closed normal 1.5.2 GDAL_Raster unspecified normal fixed CPLEscapeString