Changeset e306fbf for lib/oauth.c


Ignore:
Timestamp:
2011-12-21T19:35:13Z (12 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
164352e
Parents:
31db8165
Message:

Fixed a bug that probably (can't test this now since it's down) broke OAuth
setup for identi.ca. Turning on oauth for identi.ca accounts by default now.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/oauth.c

    r31db8165 re306fbf  
    309309                oauth_params_parse( &params, req->reply_body );
    310310                st->request_token = g_strdup( oauth_params_get( &params, "oauth_token" ) );
     311                st->token_secret = g_strdup( oauth_params_get( &params, "oauth_token_secret" ) );
    311312                oauth_params_free( &params );
    312313        }
     
    338339                oauth_params_parse( &st->params, req->reply_body );
    339340                st->token = g_strdup( oauth_params_get( &st->params, "oauth_token" ) );
     341                g_free( st->token_secret );
    340342                st->token_secret = g_strdup( oauth_params_get( &st->params, "oauth_token_secret" ) );
    341343        }
Note: See TracChangeset for help on using the changeset viewer.