Index: source/ariba/communication/EndpointDescriptor.cpp
===================================================================
--- source/ariba/communication/EndpointDescriptor.cpp	(revision 2456)
+++ source/ariba/communication/EndpointDescriptor.cpp	(revision 2457)
@@ -92,19 +92,12 @@
 				string ip = nav[i][robject_data].str();
 				ip = ip.substr(1,ip.size()-2);
-				cout << "ep-ip = " << ip << endl;
 				ep = new EndpointDescriptor();
 				ep->locator = new IPv4Locator();
-				cout << "1" << endl;
 				ep->locator->setIP(ip);
-				cout << "2" << endl;
 				ep->isUnspec = false;
-				cout << "3" << endl;
 			} else
 			if (type=="tcp") {
-				cout << "4" << endl;
 				string port = nav[i][robject_data][rfields][1].str();
 				port = port.substr(1,port.size()-2);
-				cout << "ep-tcp-port = " << port << endl;
-				cout << "5" << endl;
 				ep->locator->setPort(stoi(port));
 			}
Index: source/ariba/utility/types/Identifier.cpp
===================================================================
--- source/ariba/utility/types/Identifier.cpp	(revision 2456)
+++ source/ariba/utility/types/Identifier.cpp	(revision 2457)
@@ -638,5 +638,6 @@
 Identifier Identifier::sha1(const uint8_t* value, size_t length ) {
 	Identifier newKey;
-	uint8_t temp[20];
+	uint8_t temp[40];
+	for (int i=0; i<40; i++) temp[i] = 0;
 
 	CSHA1 sha;
