libtags: wav: do not div by zero
This commit is contained in:
parent
7f2e622965
commit
2cdd31f8f4
1 changed files with 2 additions and 0 deletions
|
@ -59,6 +59,8 @@ tagwav(Tagctx *ctx)
|
||||||
csz -= 16;
|
csz -= 16;
|
||||||
ctx->channels = le16u(d+2);
|
ctx->channels = le16u(d+2);
|
||||||
ctx->samplerate = leuint(d+4);
|
ctx->samplerate = leuint(d+4);
|
||||||
|
if(ctx->channels < 1 || ctx->samplerate < 1)
|
||||||
|
return -1;
|
||||||
ctx->duration = sz*1000 / leuint(d+8);
|
ctx->duration = sz*1000 / leuint(d+8);
|
||||||
}else if(memcmp(d, "LIST", 4) == 0){
|
}else if(memcmp(d, "LIST", 4) == 0){
|
||||||
sz = csz - 4;
|
sz = csz - 4;
|
||||||
|
|
Loading…
Reference in a new issue