2001-05-10 Elena Zannoni <ezannoni@redhat.com>
* proc-api.c (ioctl_with_trace): Fix uninitialized variable.
This commit is contained in:
parent
5a703563ae
commit
8e40d29290
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2001-05-10 Elena Zannoni <ezannoni@redhat.com>
|
||||||
|
|
||||||
|
* proc-api.c (ioctl_with_trace): Fix uninitialized variable.
|
||||||
|
|
||||||
2001-05-10 Fernando Nasser <fnasser@redhat.com>
|
2001-05-10 Fernando Nasser <fnasser@redhat.com>
|
||||||
|
|
||||||
* MAINTAINERS: Add testsuite subdirectory co-maintainers.
|
* MAINTAINERS: Add testsuite subdirectory co-maintainers.
|
||||||
|
|
|
@ -27,6 +27,7 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include "defs.h"
|
#include "defs.h"
|
||||||
#include "gdbcmd.h"
|
#include "gdbcmd.h"
|
||||||
|
#include "completer.h"
|
||||||
|
|
||||||
#if defined (NEW_PROC_API)
|
#if defined (NEW_PROC_API)
|
||||||
#define _STRUCTURED_PROC 1
|
#define _STRUCTURED_PROC 1
|
||||||
|
@ -219,7 +220,9 @@ static struct trans ioctl_table[] = {
|
||||||
int
|
int
|
||||||
ioctl_with_trace (int fd, long opcode, void *ptr, char *file, int line)
|
ioctl_with_trace (int fd, long opcode, void *ptr, char *file, int line)
|
||||||
{
|
{
|
||||||
int i, ret, arg1;
|
int i = 0;
|
||||||
|
int ret;
|
||||||
|
int arg1;
|
||||||
|
|
||||||
prepare_to_trace ();
|
prepare_to_trace ();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue