From e3f6875df07ad415b85249dc8014d0cc650957d9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 26 Jul 2013 15:26:51 +0000 Subject: fix for error in BLI_buffer_declare_static(), the stack variable wasn't the right size, from original commit 53440. Caused UV stretch display to fail. --- source/blender/blenlib/BLI_buffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenlib/BLI_buffer.h b/source/blender/blenlib/BLI_buffer.h index fe835e7cadc..879ef869653 100644 --- a/source/blender/blenlib/BLI_buffer.h +++ b/source/blender/blenlib/BLI_buffer.h @@ -53,7 +53,7 @@ enum { #define BLI_buffer_declare_static(type_, name_, flag_, static_count_) \ char name_ ## user; /* warn for free only */ \ - type_ *name_ ## _static_[static_count_]; \ + type_ name_ ## _static_[static_count_]; \ BLI_Buffer name_ = { \ /* clear the static memory if this is a calloc'd array */ \ ((void)((flag_ & BLI_BUFFER_USE_CALLOC) ? \ -- cgit v1.2.3