Remove unneeded variables and initialisations in easycsv_read_value
Signed-off-by: Pradana AUMARS <paumars@courrier.dev>
This commit is contained in:
parent
3304163ab0
commit
39059b3e49
@ -109,8 +109,8 @@ easycsv_read_value(const easycsv *csv,
|
|||||||
unsigned int row)
|
unsigned int row)
|
||||||
{
|
{
|
||||||
char str_row[BUFSIZ];
|
char str_row[BUFSIZ];
|
||||||
size_t st = 0;
|
size_t st;
|
||||||
char *pch, *pch_end, *val;
|
char *pch, *val;
|
||||||
if (row == 0) {
|
if (row == 0) {
|
||||||
easycsv_error(EASYCSV_ZEROROW, NULL);
|
easycsv_error(EASYCSV_ZEROROW, NULL);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user