diff --git a/ChangeLog b/ChangeLog index e3f3a8a6..ee8301c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-06-17 Tatsuhiro Tsujikawa + + Fixed unhandled exception(removed keyword `new'). + * src/SocketCore.cc (initEPOLL) + 2008-06-17 Tatsuhiro Tsujikawa Removed visit(const MetaEntry*) diff --git a/src/SocketCore.cc b/src/SocketCore.cc index 232c0368..3ee3e159 100644 --- a/src/SocketCore.cc +++ b/src/SocketCore.cc @@ -325,7 +325,7 @@ void SocketCore::closeConnection() void SocketCore::initEPOLL() { if((_epfd = epoll_create(1)) == -1) { - throw new DlRetryEx(StringFormat("epoll_create failed:%s", errorMsg()).str()); + throw DlRetryEx(StringFormat("epoll_create failed:%s", errorMsg()).str()); } memset(&_epEvent, 0, sizeof(struct epoll_event));