]> sigrok.org Git - libsigrok.git/commit - src/input/wav.c
wav: Stricter check for valid chunk ID.
authorAurelien Jacobs <redacted>
Sun, 26 Apr 2015 22:13:23 +0000 (00:13 +0200)
committerUwe Hermann <redacted>
Tue, 28 Apr 2015 20:05:47 +0000 (22:05 +0200)
commit94b138a3c3d07cf5581c07536c53a97cebf885d9
tree3dc56a1e92d44f4cb21b36e6ed8b4fce07ddb532
parent2b51d48b386a2050d0ab34f242161617877d8e5f
wav: Stricter check for valid chunk ID.

isascii() is a superset of isalpha() and isblank() so the current
code doesn't really make sense.
Moreover, isascii(x) is just a funky and non standard way to
write x < 128.
src/input/wav.c