Blame SOURCES/libproxy-0.4.11-crash.patch

2f2854
diff -up libproxy-0.4.11/libproxy/extension_pacrunner.cpp.crash libproxy-0.4.11/libproxy/extension_pacrunner.cpp
2f2854
--- libproxy-0.4.11/libproxy/extension_pacrunner.cpp.crash	2010-07-29 08:14:59.000000000 -0400
2f2854
+++ libproxy-0.4.11/libproxy/extension_pacrunner.cpp	2013-11-11 15:23:56.987266457 -0500
2f2854
@@ -22,20 +22,10 @@ using namespace libproxy;
2f2854
 
2f2854
 pacrunner::pacrunner(string, const url&) {}
2f2854
 
2f2854
-pacrunner_extension::pacrunner_extension() {
2f2854
-	this->pr = NULL;
2f2854
-}
2f2854
+pacrunner_extension::pacrunner_extension() {}
2f2854
 
2f2854
-pacrunner_extension::~pacrunner_extension() {
2f2854
-	if (this->pr) delete this->pr;
2f2854
-}
2f2854
+pacrunner_extension::~pacrunner_extension() {}
2f2854
 
2f2854
 pacrunner* pacrunner_extension::get(string pac, const url& pacurl) throw (bad_alloc) {
2f2854
-	if (this->pr) {
2f2854
-		if (this->last == pac)
2f2854
-			return this->pr;
2f2854
-		delete this->pr;
2f2854
-	}
2f2854
-
2f2854
-	return this->pr = this->create(pac, pacurl);
2f2854
+	return this->create(pac, pacurl);
2f2854
 }
2f2854
diff -up libproxy-0.4.11/libproxy/proxy.cpp.crash libproxy-0.4.11/libproxy/proxy.cpp
2f2854
--- libproxy-0.4.11/libproxy/proxy.cpp.crash	2013-11-11 15:25:27.309271353 -0500
2f2854
+++ libproxy-0.4.11/libproxy/proxy.cpp	2013-11-11 15:25:31.569271584 -0500
2f2854
@@ -416,7 +416,9 @@ void proxy_factory::run_pac(url &realurl
2f2854
 
2f2854
 		/* Run the PAC, but only try one PACRunner */
2f2854
 		if (debug) cerr << "Using pacrunner: " << typeid(*pacrunners[0]).name() << endl;
2f2854
-		string pacresp = pacrunners[0]->get(this->pac, this->pacurl->to_string())->run(realurl);
2f2854
+		pacrunner* runner = pacrunners[0]->get(this->pac, this->pacurl->to_string());
2f2854
+		string pacresp = runner->run(realurl);
2f2854
+		delete runner;
2f2854
 		if (debug) cerr << "Pacrunner returned: " << pacresp << endl;
2f2854
 		format_pac_response(pacresp, response);
2f2854
 	}