Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs24-19fa
git_rec_nano
Commits
a99158c7
Commit
a99158c7
authored
7 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
tweaks: remove a fragment of dead code
At that point, ptr will necessarily point at EOL -- *ptr == '\0'.
parent
3981217e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/rcfile.c
+1
-4
src/rcfile.c
with
1 addition
and
4 deletions
+1
-4
src/rcfile.c
View file @
a99158c7
...
...
@@ -200,11 +200,8 @@ char *parse_argument(char *ptr)
}
while
(
*
ptr
!=
'\0'
);
if
(
last_quote
==
NULL
)
{
if
(
*
ptr
==
'\0'
)
ptr
=
NULL
;
else
*
ptr
++
=
'\0'
;
rcfile_error
(
N_
(
"Argument '%s' has an unterminated
\"
"
),
ptr_save
);
ptr
=
NULL
;
}
else
{
*
last_quote
=
'\0'
;
ptr
=
last_quote
+
1
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help