blob: 9d580d8a633ec5e6c91fbd77547fdb69485c73c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- ksh.orig/eval.c.orig 2011-03-27 14:33:38.000000000 +0200
+++ ksh/eval.c 2011-03-27 15:08:25.986119913 +0200
@@ -8,6 +8,7 @@
#include <pwd.h>
#include <dirent.h>
#include <sys/stat.h>
+#include "strlcpy.h"
/*
* string expansion
@@ -692,7 +693,7 @@
int c;
int state; /* next state: XBASE, XARG, XSUB, XNULLSUB */
int stype; /* substitution type */
- int slen;
+ int slen = 0;
char *p;
struct tbl *vp;
|