* filesys.c: Possibly uninitialized variable rv.
authorJim Blandy <jimb@red-bean.com>
Wed, 11 Sep 1996 20:26:10 +0000 (20:26 +0000)
committerJim Blandy <jimb@red-bean.com>
Wed, 11 Sep 1996 20:26:10 +0000 (20:26 +0000)
libguile/filesys.c

index ec60d00..48f8bdb 100644 (file)
@@ -589,7 +589,7 @@ scm_sys_stat (fd_or_path)
      SCM fd_or_path;
 #endif
 {
-  int rv;
+  int rv = 1;
   struct stat stat_temp;
 
   if (SCM_INUMP (fd_or_path))