summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-02-29 15:17:12 +0100
committerRobin Gareus <robin@gareus.org>2016-02-29 15:17:12 +0100
commit38f3d9d68a71b8fcaf12e24e27b555e5f8ec6f32 (patch)
tree2f8eb3da57d1e175002842ca87486865d2b7e99b /libs
parent8741a5885b7bbffa73071583b9e927ce5ac1aaf6 (diff)
initialize uninitialized variable
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/session.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index bc17e4eb7f..a324aedbc6 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -232,6 +232,7 @@ Session::Session (AudioEngine &eng,
, pending_auto_loop (false)
, _mempool ("Session", 1048576)
, lua (lua_newstate (&PBD::ReallocPool::lalloc, &_mempool))
+ , _n_lua_scripts (0)
, _butler (new Butler (*this))
, _post_transport_work (0)
, cumulative_rf_motion (0)