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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-02-11 11:09:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-11 11:09:27 +0300
commit1724ff29e03c9748504cbe92b3b9e4f22db01122 (patch)
treeec5fffe0af8a2f2b18d2c3ced4c849b4b966845d /source/blender/blenloader
parent3ce5e5a85778bc339b5275198beb74d90fc65334 (diff)
readfile: skip negative sized thumbnails
We may want to use 'TEST' BCode in the future for including data besides thumbnails. This allows negative values to be used w/o attempting to load a thumbnail.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c24
1 files changed, 9 insertions, 15 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 3afa5f4a406..adef6e4dc2d 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -977,10 +977,9 @@ static int *read_file_thumbnail(FileData *fd)
BLI_endian_switch_int32(&data[1]);
}
- int width = data[0];
- int height = data[1];
-
- if (!BLEN_THUMB_SAFE_MEMSIZE(width, height)) {
+ const int width = data[0];
+ const int height = data[1];
+ if (!BLEN_THUMB_MEMSIZE_IS_VALID(width, height)) {
break;
}
if (bhead->len < BLEN_THUMB_MEMSIZE_FILE(width, height)) {
@@ -1422,14 +1421,11 @@ BlendThumbnail *BLO_thumbnail_from_file(const char *filepath)
fd_data = fd ? read_file_thumbnail(fd) : NULL;
if (fd_data) {
- int width = fd_data[0];
- int height = fd_data[1];
-
- /* Protect against buffer overflow vulnerability. */
- if (BLEN_THUMB_SAFE_MEMSIZE(width, height)) {
+ const int width = fd_data[0];
+ const int height = fd_data[1];
+ if (BLEN_THUMB_MEMSIZE_IS_VALID(width, height)) {
const size_t sz = BLEN_THUMB_MEMSIZE(width, height);
data = MEM_mallocN(sz, __func__);
-
if (data) {
BLI_assert((sz - sizeof(*data)) == (BLEN_THUMB_MEMSIZE_FILE(width, height) - (sizeof(*fd_data) * 2)));
data->width = width;
@@ -8997,11 +8993,9 @@ BlendFileData *blo_read_file_internal(FileData *fd, const char *filepath)
const int *data = read_file_thumbnail(fd);
if (data) {
- int width = data[0];
- int height = data[1];
-
- /* Protect against buffer overflow vulnerability. */
- if (BLEN_THUMB_SAFE_MEMSIZE(width, height)) {
+ const int width = data[0];
+ const int height = data[1];
+ if (BLEN_THUMB_MEMSIZE_IS_VALID(width, height)) {
const size_t sz = BLEN_THUMB_MEMSIZE(width, height);
bfd->main->blen_thumb = MEM_mallocN(sz, __func__);