diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-07 17:33:02 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-08-07 17:33:02 +0100 |
commit | daae10fbfe16bac26f74af91faf253d377f1b166 (patch) | |
tree | e7870e81be568ab10abcc1bf8639a9191dbbb9c1 /protocols/yahoo/libyahoo2.c | |
parent | 289bd2d47ff58f42879ad50ebbc1b193831e4a78 (diff) |
OpenSolaris (non-gcc) fixes, patches from Dagobert Michelsen <dam@opencsw.org>
with some changes.
Diffstat (limited to 'protocols/yahoo/libyahoo2.c')
-rw-r--r-- | protocols/yahoo/libyahoo2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/yahoo/libyahoo2.c b/protocols/yahoo/libyahoo2.c index 9e0d705b..b062e7f9 100644 --- a/protocols/yahoo/libyahoo2.c +++ b/protocols/yahoo/libyahoo2.c @@ -1858,7 +1858,8 @@ static void yahoo_https_auth_token_finish(struct http_request *req) goto fail; } - return yahoo_https_auth_init(had); + yahoo_https_auth_init(had); + return; fail: g_free(had->token); |