Skip to content

Commit 687d969

Browse files
committedApr 20, 2015
Noise: Correct noise objects created with invalid dimensions
1 parent 386d695 commit 687d969

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎src/noise.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,13 @@ Noise::~Noise()
485485

486486
void Noise::allocBuffers()
487487
{
488+
if (sx < 1)
489+
sx = 1;
490+
if (sy < 1)
491+
sy = 1;
492+
if (sz < 1)
493+
sz = 1;
494+
488495
this->noise_buf = NULL;
489496
resizeNoiseBuf(sz > 1);
490497

0 commit comments

Comments
 (0)
Please sign in to comment.