From 416ccc2e25d2cd8a3ed1d46eb295201efb231196 Mon Sep 17 00:00:00 2001 From: mccallum Date: Wed, 13 Mar 1996 02:34:55 +0000 Subject: [PATCH] ([InPort -setReceivedPacketInvocation:]): Assert that _packet_invocation isn't already set. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1134 72102866-910b-0410-8b05-ffd578937521 --- Source/Port.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Port.m b/Source/Port.m index 594dba48e..ada4c35a7 100644 --- a/Source/Port.m +++ b/Source/Port.m @@ -136,6 +136,7 @@ - (void) setReceivedPacketInvocation: (id )invocation { + assert (!_packet_invocation); _packet_invocation = invocation; }