diff src/edit.c @ 1074:a112fdce9ebd v7.0.200

updated for version 7.0-200
author vimboss
date Tue, 20 Feb 2007 02:49:19 +0000
parents ec7a570696ac
children f299f0bf32d7
line wrap: on
line diff
--- a/src/edit.c
+++ b/src/edit.c
@@ -2698,6 +2698,7 @@ ins_compl_dictionaries(dict_start, pat, 
     buf = alloc(LSIZE);
     if (buf == NULL)
 	return;
+    regmatch.regprog = NULL;	/* so that we can goto theend */
 
     /* If 'infercase' is set, don't use 'smartcase' here */
     save_p_scs = p_scs;
@@ -2712,13 +2713,13 @@ ins_compl_dictionaries(dict_start, pat, 
 	char_u *pat_esc = vim_strsave_escaped(pat, (char_u *)"\\");
 
 	if (pat_esc == NULL)
-	    return ;
+	    goto theend ;
 	i = (int)STRLEN(pat_esc) + 10;
 	ptr = alloc(i);
 	if (ptr == NULL)
 	{
 	    vim_free(pat_esc);
-	    return;
+	    goto theend;
 	}
 	vim_snprintf((char *)ptr, i, "^\\s*\\zs\\V%s", pat_esc);
 	regmatch.regprog = vim_regcomp(ptr, RE_MAGIC);