Applied patch from Erik Habbinga to fix a problem with an uninitialized
substitution delimiter.
This commit is contained in:
parent
7ddaf7caae
commit
038c8eb5a9
@ -154,6 +154,9 @@ static int get_address(struct sed_cmd *sed_cmd, const char *str, int *line, rege
|
||||
{
|
||||
char *my_str = strdup(str);
|
||||
int idx = 0;
|
||||
char olddelimiter;
|
||||
olddelimiter = sed_cmd->delimiter;
|
||||
sed_cmd->delimiter = '/';
|
||||
|
||||
if (isdigit(my_str[idx])) {
|
||||
do {
|
||||
@ -182,6 +185,7 @@ static int get_address(struct sed_cmd *sed_cmd, const char *str, int *line, rege
|
||||
}
|
||||
|
||||
free(my_str);
|
||||
sed_cmd->delimiter = olddelimiter;
|
||||
return idx;
|
||||
}
|
||||
|
||||
|
4
sed.c
4
sed.c
@ -154,6 +154,9 @@ static int get_address(struct sed_cmd *sed_cmd, const char *str, int *line, rege
|
||||
{
|
||||
char *my_str = strdup(str);
|
||||
int idx = 0;
|
||||
char olddelimiter;
|
||||
olddelimiter = sed_cmd->delimiter;
|
||||
sed_cmd->delimiter = '/';
|
||||
|
||||
if (isdigit(my_str[idx])) {
|
||||
do {
|
||||
@ -182,6 +185,7 @@ static int get_address(struct sed_cmd *sed_cmd, const char *str, int *line, rege
|
||||
}
|
||||
|
||||
free(my_str);
|
||||
sed_cmd->delimiter = olddelimiter;
|
||||
return idx;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user