- Timestamp:
- 2010-08-08T15:34:49Z (14 years ago)
- Branches:
- master
- Children:
- 5fecede
- Parents:
- b890626 (diff), ee6cc94 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/misc.c
rb890626 r2528cda 298 298 void http_encode( char *s ) 299 299 { 300 char *t;300 char t[strlen(s)+1]; 301 301 int i, j; 302 302 303 t = g_strdup( s ); 304 303 strcpy( t, s ); 305 304 for( i = j = 0; t[i]; i ++, j ++ ) 306 305 { … … 320 319 } 321 320 s[j] = 0; 322 323 g_free( t );324 321 } 325 322
Note: See TracChangeset
for help on using the changeset viewer.