mirror of
git://git.gnu.org.ua/wordsplit.git
synced 2025-04-25 16:19:54 +03:00
Bugfix
* src/wordsplit.c (wordsplit_finish): Fix typo. (wsplt_assign_param): Use _wsplt_seterr
This commit is contained in:
parent
c62f40dee0
commit
070813ec0e
1 changed files with 3 additions and 3 deletions
|
@ -837,7 +837,7 @@ wordsplit_finish (struct wordsplit *wsp)
|
|||
}
|
||||
else
|
||||
{
|
||||
wsp->ws_error = WRDSE_EOF;
|
||||
wsp->ws_errno = WRDSE_EOF;
|
||||
return WRDSE_EOF;
|
||||
}
|
||||
goto again;
|
||||
|
@ -1163,7 +1163,7 @@ wsplt_assign_param (struct wordsplit *wsp, int param_idx, char *value)
|
|||
char *v;
|
||||
|
||||
if (param_idx < 0)
|
||||
return WRDSE_BADPARAM;
|
||||
return _wsplt_seterr (wsp, WRDSE_BADPARAM);
|
||||
if (param_idx == wsp->ws_paramc)
|
||||
{
|
||||
char **parambuf;
|
||||
|
@ -1210,7 +1210,7 @@ wsplt_assign_param (struct wordsplit *wsp, int param_idx, char *value)
|
|||
wsp->ws_paramc = param_idx + 1;
|
||||
}
|
||||
else if (param_idx > wsp->ws_paramc)
|
||||
return WRDSE_BADPARAM;
|
||||
return _wsplt_seterr (wsp, WRDSE_BADPARAM);
|
||||
|
||||
v = strdup (value);
|
||||
if (!v)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue