浏览代码

Removed a completely pointless 128-byte buffer.

dtrg 17 年之前
父节点
当前提交
7f266d6b4e
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      lang/pc/libpc/ini.c

+ 1 - 2
lang/pc/libpc/ini.c

@@ -35,8 +35,7 @@ int		_fp_hook = 1;	/* This is for Minix, but does not harm others */
 
 _ini(args,c,p,mainlb) char *args,*mainlb; int c; struct file **p; {
 	struct file *f;
-	char buf[128];
-
+	
 	_pargc= *(int *)args; args += sizeof (int);
 	_pargv= *(char ***)args; args += sizeof (char **);
 	_penvp= *(char ***)args;