- Timestamp:
- 2011-12-21T19:35:13Z (13 years ago)
- Branches:
- master
- Children:
- 164352e
- Parents:
- 31db8165
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/oauth.c
r31db8165 re306fbf 309 309 oauth_params_parse( ¶ms, req->reply_body ); 310 310 st->request_token = g_strdup( oauth_params_get( ¶ms, "oauth_token" ) ); 311 st->token_secret = g_strdup( oauth_params_get( ¶ms, "oauth_token_secret" ) ); 311 312 oauth_params_free( ¶ms ); 312 313 } … … 338 339 oauth_params_parse( &st->params, req->reply_body ); 339 340 st->token = g_strdup( oauth_params_get( &st->params, "oauth_token" ) ); 341 g_free( st->token_secret ); 340 342 st->token_secret = g_strdup( oauth_params_get( &st->params, "oauth_token_secret" ) ); 341 343 }
Note: See TracChangeset
for help on using the changeset viewer.