Fix strncmp argument

main
cel 6 years ago
parent 37666be2d3
commit e1e1c56a06

@ -633,7 +633,7 @@ static int bs_read_error(struct boxs *bs, int errfd, enum pkt_flags flags, size_
if (flags & pkt_flags_json && len == 4) { if (flags & pkt_flags_json && len == 4) {
char buf[4]; char buf[4];
if (bs_read(bs, buf, 4) < 0) return -1; if (bs_read(bs, buf, 4) < 0) return -1;
if (strncmp(buf, "true", 0) == 0) { if (strncmp(buf, "true", 4) == 0) {
return 0; return 0;
} }
if (write_all(errfd, buf, 4) < 0) return -1; if (write_all(errfd, buf, 4) < 0) return -1;

Loading…
Cancel
Save