Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
b31e4383
Commit
b31e4383
authored
14 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
Fix memory leak in :find completion. (Dominique Pelle)
parent
4f99eae0
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/misc1.c
+9
-9
9 additions, 9 deletions
src/misc1.c
with
9 additions
and
9 deletions
src/misc1.c
+
9
−
9
View file @
b31e4383
...
...
@@ -9306,7 +9306,7 @@ is_unique(maybe_unique, gap, i)
}
/*
* Remove adj
e
cent duplicate entries from "gap", which is a list of file names
* Remove adj
a
cent duplicate entries from "gap", which is a list of file names
* in allocated memory.
*/
static void
...
...
@@ -9354,7 +9354,7 @@ uniquefy_paths(gap, pattern)
/*
* We need to prepend a '*' at the beginning of file_pattern so that the
* regex matches anywhere in the path. FIXME: is this valid for all
* possible pattern?
* possible pattern
s
?
*/
len = (int)STRLEN(pattern);
file_pattern = alloc(len + 2);
...
...
@@ -9363,14 +9363,13 @@ uniquefy_paths(gap, pattern)
STRCAT(file_pattern, pattern);
pat = file_pat_to_reg_pat(file_pattern, NULL, NULL, TRUE);
vim_free(file_pattern);
regmatch.rm_ic = TRUE; /* always ignore case */
if (pat == NULL)
return;
if (pat != NULL)
{
regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
vim_free(pat);
}
if (pat == NULL || regmatch.regprog == NULL)
regmatch.rm_ic = TRUE; /* always ignore case */
regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
vim_free(pat);
if (regmatch.regprog == NULL)
return;
for (i = 0; i < gap->ga_len; i++)
...
...
@@ -9391,6 +9390,7 @@ uniquefy_paths(gap, pattern)
}
}
vim_free(regmatch.regprog);
if (sort_again)
{
sort_strings(fnames, gap->ga_len);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment