(dissect_method_return): Initialize RETFRAME to NULL to prevent warning.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1181 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-03-18 14:03:17 +00:00
parent 259be49a34
commit c15e973016

View file

@ -1,5 +1,5 @@
/* Implementation of functions for dissecting/making method calls
Copyright (C) 1994, 1995 Free Software Foundation, Inc.
Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
Date: Oct 1994
@ -487,7 +487,7 @@ dissect_method_return(arglist_t argframe, const char *type,
BOOL out_parameters,
void(*f)(int,void*,const char*,int))
{
retval_t retframe;
retval_t retframe = NULL;
int argnum;
int retsize;
int flags;