Welcome to mirror list, hosted at ThFree Co, Russian Federation.

data_extract_to_buffer.c « libunarchive « archival - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95cb8f576fb4dd79a9bd0970ae3095e5f888aeb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* vi: set sw=4 ts=4: */
/*
 * Copyright 2002 Glenn McGrath
 *
 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
 */

#include "libbb.h"
#include "unarchive.h"

void data_extract_to_buffer(archive_handle_t *archive_handle)
{
	const unsigned int size = archive_handle->file_header->size;

	archive_handle->buffer = xzalloc(size + 1);

	xread(archive_handle->src_fd, archive_handle->buffer, size);
}