diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-31 20:09:27 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-31 20:09:27 +0000 |
commit | 34f4b1928ea5ae86b7ead92d8dc2c53842499f31 (patch) | |
tree | 68344e36b6b8fb63ca8e290de3fe21d29d172b2c /protocols/Twitter/src/connection.cpp | |
parent | d7e550f551052ae4233e48a41448b8a155b8e013 (diff) |
crash on start in Twitter
git-svn-id: http://svn.miranda-ng.org/main/trunk@7978 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter/src/connection.cpp')
-rw-r--r-- | protocols/Twitter/src/connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Twitter/src/connection.cpp b/protocols/Twitter/src/connection.cpp index cb54b8b00e..938f9350ff 100644 --- a/protocols/Twitter/src/connection.cpp +++ b/protocols/Twitter/src/connection.cpp @@ -115,9 +115,9 @@ bool TwitterProto::NegotiateConnection() if (!dbName) {
screenName = dbv.pszVal;
db_set_s(0,m_szModuleName,TWITTER_KEY_NICK,dbv.pszVal);
+ db_free(&dbv);
//debugLogW("**NegotiateConnection - we have a username already in the db - %s", screenName);
}
- db_free(&dbv);
}
// twitter changed the base URL in v1.1 of the API, I don't think users will need to modify it, so
|