[Bf-blender-cvs] [5f47439cfd] temp-blender2.8-stable: fix clang warning

Mike Erwin noreply at git.blender.org
Tue Feb 7 20:49:39 CET 2017


Commit: 5f47439cfd1832136b74203e26c5d893fcf7801a
Author: Mike Erwin
Date:   Tue Feb 7 13:49:50 2017 -0500
Branches: temp-blender2.8-stable
https://developer.blender.org/rB5f47439cfd1832136b74203e26c5d893fcf7801a

fix clang warning

uninitialized variable (glGen functions set the value)

===================================================================

M	source/blender/gpu/gawain/buffer_id.cpp

===================================================================

diff --git a/source/blender/gpu/gawain/buffer_id.cpp b/source/blender/gpu/gawain/buffer_id.cpp
index a7b8d7a394..450656c4eb 100644
--- a/source/blender/gpu/gawain/buffer_id.cpp
+++ b/source/blender/gpu/gawain/buffer_id.cpp
@@ -53,7 +53,7 @@ GLuint buffer_id_alloc()
 		}
 	orphan_mutex.unlock();
 
-	GLuint new_buffer_id;
+	GLuint new_buffer_id = 0;
 	glGenBuffers(1, &new_buffer_id);
 	return new_buffer_id;
 	}
@@ -80,8 +80,6 @@ GLuint vao_id_alloc()
 	assert(thread_is_main());
 #endif
 
-	GLuint new_vao_id;
-
 	// delete orphaned IDs
 	orphan_mutex.lock();
 	if (!orphaned_vao_ids.empty())
@@ -95,6 +93,7 @@ GLuint vao_id_alloc()
 		}
 	orphan_mutex.unlock();
 
+	GLuint new_vao_id = 0;
 	glGenVertexArrays(1, &new_vao_id);
 	return new_vao_id;
 	}




More information about the Bf-blender-cvs mailing list