In WebController::handleRequest() I see the following code
std::string favicon = ep->favicon();
if (favicon.empty()) {
const std::string *confFavicon = conf_.property("favicon");
if (confFavicon)
favicon = *confFavicon;
}
session = new WebSession(this, sessionId,
ep->type(), ep->favicon(), *request);
Note that the local variable favicon is not used after being assigned,
not even later in the code. Perhaps it was intended as the fourth
argument to `new WebSession'.
This code exists both in 2.29 and in todays version from git.
/Lars Hamrén
------------------------------------------------------------------------------
_______________________________________________
witty-interest mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/witty-interest