Changeset 14208

Show
Ignore:
Timestamp:
04/05/08 15:48:52 (3 months ago)
Author:
warmerdam
Message:

fix bug with url encoding in CPLEscapeString() (#2314)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.5/gdal/port/cpl_string.cpp

    r13197 r14208  
    14121412            else 
    14131413            { 
    1414                 sprintf( pszOutput, "%%%02X", pszInput[iIn] ); 
     1414                sprintf( pszOutput+iOut, "%%%02X", pszInput[iIn] ); 
    14151415                iOut += 3; 
    14161416            }