From 7ebfa380dd979c5ef2acb53ba12d12e103a8cb3c Mon Sep 17 00:00:00 2001 From: axel Date: Mon, 13 Feb 2006 08:23:13 +1000 Subject: [PATCH] Variable used for filenmae length was accidentally set to static darcs-hash:20060212222313-ac50b-1893f4fbe52a8c72ebc8332b1e575c1b8a2b31d5.gz --- wildcard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wildcard.c b/wildcard.c index 278a7f248..fb689b8b1 100644 --- a/wildcard.c +++ b/wildcard.c @@ -555,7 +555,7 @@ int wildcard_expand( const wchar_t *wc, /* The maximum length of a file element */ - static size_t ln=MAX_FILE_LENGTH; + size_t ln=MAX_FILE_LENGTH; char * narrow_dir_string = wcs2str( dir_string ); if( narrow_dir_string )