Ticket #615: compact-multi.patch
File compact-multi.patch, 489 bytes (added by , 12 years ago) |
---|
-
backends/chert/chert_compact.cc
257 257 if (tot_totlen < totlen) { 258 258 throw "totlen wrapped!"; 259 259 } 260 } 261 if (cur->next()) { 262 pq.push(cur); 260 if (cur->next()) { 261 pq.push(cur); 262 } else { 263 delete cur; 264 } 263 265 } else { 264 delete cur;266 pq.push(cur); 265 267 } 266 268 } 267 269