[Xorp-cvs] XORP cvs commit: xorp/libxorp

Pavlin Radoslavov pavlin at icir.org
Mon Aug 13 16:29:32 PDT 2007


CVSROOT:	/usr/local/share/doc/apache/cvs
Module name:	xorp
Changes by:	pavlin at xorpc.icir.org	2007-08-13 23:29:32 UTC

XORP CVS repository


Modified files:
	libxorp       test_vif.cc vif.cc 

Log message:
	Reversed-back the work-around from the previous commit, because
	it seems there is something fundamentally wrong with the particular
	system that triggered the particular work-around.
	
	On that system, assigning/copying an empty STL list in a C++ program
	(a perfectly legal operation) will actually result in a coredump:
	
	// BEGIN test.cc
	#include <list>
	using namespace std;
	
	int
	main()
	{
	        list<int> l1, l2;
	
	        l1 = l2;
	        exit(0);
	}
	// END test.cc

Revision  Changes                                Path
1.16      +2 -13;  commitid: 1155f46c0e8b37ea6;  xorp/libxorp/test_vif.cc
1.22      +2 -14;  commitid: 1155f46c0e8b37ea6;  xorp/libxorp/vif.cc



More information about the Xorp-cvs mailing list