Browse Source

2009-10-10 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

	Fixed the bug that causes segmentation fault if
	req->getCurrentUrl() contains printf formatting characters such as
	%d. The statement that causes this bug is useless and removed.
	* src/AbstractCommand.cc
Tatsuhiro Tsujikawa 16 years ago
parent
commit
53bdc4918a
2 changed files with 7 additions and 1 deletions
  1. 7 0
      ChangeLog
  2. 0 1
      src/AbstractCommand.cc

+ 7 - 0
ChangeLog

@@ -1,3 +1,10 @@
+2009-10-10  Tatsuhiro Tsujikawa  <t-tujikawa@users.sourceforge.net>
+
+	Fixed the bug that causes segmentation fault if
+	req->getCurrentUrl() contains printf formatting characters such as
+	%d. The statement that causes this bug is useless and removed.
+	* src/AbstractCommand.cc
+
 2009-10-07  Tatsuhiro Tsujikawa  <t-tujikawa@users.sourceforge.net>
 
 	* Release 1.6.1

+ 0 - 1
src/AbstractCommand.cc

@@ -280,7 +280,6 @@ bool AbstractCommand::prepareForRetry(time_t wait) {
 
 void AbstractCommand::onAbort() {
   if(!req.isNull()) {
-    logger->debug(req->getCurrentUrl().c_str());
     // TODO This might be a problem if the failure is caused by proxy.
     e->_requestGroupMan->getOrCreateServerStat(req->getHost(),
 					       req->getProtocol())->setError();