mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 08:26:27 +00:00
(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:
parent
259be49a34
commit
c15e973016
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue