diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-09-30 01:10:57 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-09-30 03:04:07 +0200 |
commit | 02859be56d43bcece02aab350e02bc95ed1bf446 (patch) | |
tree | bbb68a91e26f4502c22047ad2b26ed8918c5fbb1 /src/channels.cpp | |
parent | 83e90c4baa1215caf05295aec86a0a4d7bfff3f9 (diff) |
Fix more undefined behavior caused by referencing the returned buffer by std::string::c_str() when the object is temporary
See 83c7cc45daf6fb1f8c36f15297a4657e45a34e88
Diffstat (limited to 'src/channels.cpp')
-rw-r--r-- | src/channels.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/channels.cpp b/src/channels.cpp index c265171b5..855fd0e15 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -1013,7 +1013,8 @@ Invitation* Invitation::Find(Channel* c, LocalUser* u, bool check_expired) if ((check_expired) && (inv->expiry != 0) && (inv->expiry <= ServerInstance->Time())) { /* Expired invite, remove it. */ - ServerInstance->Logs->Log("INVITATION", DEBUG, "Invitation::Find ecountered expired entry: %p expired %s", (void*) inv, ServerInstance->TimeString(inv->expiry).c_str()); + std::string expiration = ServerInstance->TimeString(inv->expiry); + ServerInstance->Logs->Log("INVITATION", DEBUG, "Invitation::Find ecountered expired entry: %p expired %s", (void*) inv, expiration.c_str()); i = locallist.erase(i); inv->cull(); delete inv; |