mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-18 18:44:06 +08:00
Clean up printability test in dbase code.
This commit is contained in:
parent
22b305ad4a
commit
a9953097f4
@ -334,7 +334,7 @@ dbf_get_record(dbhead * dbh, field * fields, u_long rec)
|
||||
{
|
||||
end = &dbffield[fields[t].db_flen - 1];
|
||||
i = fields[t].db_flen;
|
||||
while ((i > 0) && ((*end < 0x21) || (*end > 0x7E)))
|
||||
while (i > 0 && !isprint(*end))
|
||||
{
|
||||
end--;
|
||||
i--;
|
||||
@ -346,7 +346,7 @@ dbf_get_record(dbhead * dbh, field * fields, u_long rec)
|
||||
{
|
||||
end = dbffield;
|
||||
i = fields[t].db_flen;
|
||||
while ((i > 0) && ((*end < 0x21) || (*end > 0x7E)))
|
||||
while (i > 0 && !isprint(*end))
|
||||
{
|
||||
end++;
|
||||
i--;
|
||||
|
Loading…
Reference in New Issue
Block a user