From fa3982c7c82add3d201aec860cb981a595f10be9 Mon Sep 17 00:00:00 2001 From: Pavel Vomacka Date: Mon, 25 Jul 2016 13:48:16 +0200 Subject: [PATCH] Coverity - not initialized variable The variable hasn't been initialized, now it is set to null by default. Reviewed-By: Petr Vobornik --- install/ui/src/freeipa/widget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/ui/src/freeipa/widget.js b/install/ui/src/freeipa/widget.js index e3146aeaa..f0e95f523 100644 --- a/install/ui/src/freeipa/widget.js +++ b/install/ui/src/freeipa/widget.js @@ -1047,7 +1047,7 @@ IPA.multivalued_widget = function(spec) { that.child_spec = spec.child_spec; that.size = spec.size || 30; - that.undo_control; + that.undo_control = null; that.initialized = true; that.updating = false;