The R Project SVN R

Rev

Rev 49813 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 49813 Rev 63230
Line 52... Line 52...
52
			return_if_error(lzma_stream_decoder_init(
52
			return_if_error(lzma_stream_decoder_init(
53
					&coder->next, allocator,
53
					&coder->next, allocator,
54
					coder->memlimit, coder->flags));
54
					coder->memlimit, coder->flags));
55
		} else {
55
		} else {
56
			return_if_error(lzma_alone_decoder_init(&coder->next,
56
			return_if_error(lzma_alone_decoder_init(&coder->next,
57
					allocator, coder->memlimit));
57
					allocator, coder->memlimit, true));
58
 
58
 
59
			// If the application wants to know about missing
59
			// If the application wants to know about missing
60
			// integrity check or about the check in general, we
60
			// integrity check or about the check in general, we
61
			// need to handle it here, because LZMA_Alone decoder
61
			// need to handle it here, because LZMA_Alone decoder
62
			// doesn't accept any flags.
62
			// doesn't accept any flags.