From 7ae09fa1fe47ff4b2ced4c5cec6ca7de08e6efc3 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Sat, 3 Sep 2016 17:58:16 -0400 Subject: [PATCH] try fixing memory errors --- HTTPServer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HTTPServer.cpp b/HTTPServer.cpp index a8434bef..3fdfcca5 100644 --- a/HTTPServer.cpp +++ b/HTTPServer.cpp @@ -351,14 +351,14 @@ namespace http { s << "" << info->RemoteIdent->ToBase32() << ""; s << ""; if(info->CurrentIBGW) - s << info->CurrentIBGW->ToBase64(); + s << info->CurrentIBGW->ToBase64().c_str(); else s << "(none)"; s << ""; s << ""; if(info->CurrentOBEP) - s << info->CurrentOBEP->ToBase64(); + s << info->CurrentOBEP->ToBase64().c_str(); else s << "(none)"; s << "";