diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2006-03-29 17:41:35 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2006-03-29 17:41:35 +0200 |
commit | e9468949a4473a6cc5d6a777cb991d321dbd74df (patch) | |
tree | 3acd634c39031878228c75c8d75d90a131c61b0c /src | |
parent | acd3c7852700b349f74b83c683256c00c02181b2 (diff) |
fix jump on unitialized value (valgrind)
Diffstat (limited to 'src')
-rw-r--r-- | src/Panorama.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Panorama.cxx b/src/Panorama.cxx index 76f9a7e..c8cb1dc 100644 --- a/src/Panorama.cxx +++ b/src/Panorama.cxx @@ -45,6 +45,7 @@ Panorama::Panorama() { parms.a_tilt = 0.0; parms.scale = 3500.0; view_name = NULL; + proj = NULL; set_projection(Projection::TANGENTIAL); } |