aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2015-04-30 13:45:34 -0700
committerMarco Nelissen <marcone@google.com>2015-04-30 13:45:34 -0700
commit934c0910b9658e54b39cc01b38e125c5dd4a9934 (patch)
treebbda182d07f5b362b29cfb65f300d711cfc92e55
parent7441207fc100925e0b2cb6f5d271acfe2a92fd4a (diff)
downloadtremolo-934c0910b9658e54b39cc01b38e125c5dd4a9934.tar.gz
Fix allocation failure crash
Bug: 20718524 Change-Id: I86dcaf7d7452ad892822ff96fbcc0908e035b118
-rw-r--r--Tremolo/codebook.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/Tremolo/codebook.c b/Tremolo/codebook.c
index 27903b5..0ff3529 100644
--- a/Tremolo/codebook.c
+++ b/Tremolo/codebook.c
@@ -507,13 +507,12 @@ int vorbis_book_unpack(oggpack_buffer *opb,codebook *s){
/* use dec_type 1: vector of packed values */
/* need quantized values before */
- s->q_val=alloca(sizeof(ogg_uint16_t)*quantvals);
+ s->q_val=calloc(sizeof(ogg_uint16_t), quantvals);
if (!s->q_val) goto _eofout;
for(i=0;i<quantvals;i++)
((ogg_uint16_t *)s->q_val)[i]=(ogg_uint16_t)oggpack_read(opb,s->q_bits);
if(oggpack_eop(opb)){
- s->q_val=0; /* cleanup must not free alloca memory */
goto _eofout;
}
@@ -523,12 +522,11 @@ int vorbis_book_unpack(oggpack_buffer *opb,codebook *s){
s->dec_leafw=_determine_leaf_words(s->dec_nodeb,
(s->q_bits*s->dim+8)/8);
if(_make_decode_table(s,lengthlist,quantvals,opb,maptype)){
- s->q_val=0; /* cleanup must not free alloca memory */
goto _errout;
}
- s->q_val=0; /* about to go out of scope; _make_decode_table
- was using it */
+ free(s->q_val);
+ s->q_val=0;
}else{
/* use dec_type 2: packed vector of column offsets */
@@ -619,6 +617,7 @@ int vorbis_book_unpack(oggpack_buffer *opb,codebook *s){
_eofout:
vorbis_book_clear(s);
free(lengthlist);
+ free(s->q_val);
return -1;
}