changeset 26440:dc68f987c9ba stable

oct-builtin.h: Fix static analyzer detected issues (bug #55347). * ov-builtin.h (octave_builtin (void)): Initialize member variable 'm' to nullptr.
author Rik <rik@octave.org>
date Fri, 04 Jan 2019 17:53:23 -0800
parents 4d5bf84ae249
children ea624b1c5571
files libinterp/octave-value/ov-builtin.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/octave-value/ov-builtin.h	Fri Jan 04 16:53:13 2019 -0800
+++ b/libinterp/octave-value/ov-builtin.h	Fri Jan 04 17:53:23 2019 -0800
@@ -50,8 +50,8 @@
 {
 public:
 
-  octave_builtin (void) : octave_function (), f (nullptr), file (),
-                          jtype (nullptr)
+  octave_builtin (void) : octave_function (), f (nullptr), m (nullptr),
+                          file (), jtype (nullptr)
   { }
 
   typedef octave_value_list (*meth) (octave::interpreter&,