[Bf-blender-cvs] [d027601] alembic: Small fix for uninitialized variable (currently unused).

Lukas Tönne noreply at git.blender.org
Fri Apr 10 13:53:47 CEST 2015


Commit: d0276014f9d7cd8e14994b1961084613047ec2f6
Author: Lukas Tönne
Date:   Fri Apr 10 13:53:20 2015 +0200
Branches: alembic
https://developer.blender.org/rBd0276014f9d7cd8e14994b1961084613047ec2f6

Small fix for uninitialized variable (currently unused).

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

M	source/blender/pointcache/alembic/abc_info.cpp

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

diff --git a/source/blender/pointcache/alembic/abc_info.cpp b/source/blender/pointcache/alembic/abc_info.cpp
index 63e688a..ad37b52 100644
--- a/source/blender/pointcache/alembic/abc_info.cpp
+++ b/source/blender/pointcache/alembic/abc_info.cpp
@@ -72,7 +72,8 @@ namespace PTC {
 
 struct stringstream {
 	stringstream(void (*cb)(void *, const char *), void *userdata) :
-	    cb(cb)
+	    cb(cb),
+	    userdata(userdata)
 	{
 	}




More information about the Bf-blender-cvs mailing list