View | Details | Raw Unified | Return to bug 87878
Collapse All | Expand All

(-)chunkTab.cxx (-2 / +2 lines)
Lines 142-148 Link Here
142
	off_t part,nparts;
142
	off_t part,nparts;
143
	chunk* tempchunk = new chunk;
143
	chunk* tempchunk = new chunk;
144
	tempchunk->file = 0;
144
	tempchunk->file = 0;
145
	tempchunk->from = -1;
145
	tempchunk->from = 0;
146
	tempchunk->to = -1;
146
	tempchunk->to = -1;
147
	tempchunk->to_included = false;
147
	tempchunk->to_included = false;
148
	tempchunk->from_included = false;
148
	tempchunk->from_included = false;
Lines 626-632 Link Here
626
	for (i = 1; i <= n; i++) {
626
	for (i = 1; i <= n; i++) {
627
		tempchunk = new chunk;
627
		tempchunk = new chunk;
628
		tempchunk->file = 0;
628
		tempchunk->file = 0;
629
		tempchunk->from = -1;
629
		tempchunk->from = 0;
630
		tempchunk->to = -1;
630
		tempchunk->to = -1;
631
		tempchunk->to_included = true;
631
		tempchunk->to_included = true;
632
		tempchunk->from_included = false;
632
		tempchunk->from_included = false;

Return to bug 87878