diff options
| author | Pavel Vomacka <pvomacka@redhat.com> | 2016-07-25 13:48:16 +0200 |
|---|---|---|
| committer | Petr Vobornik <pvoborni@redhat.com> | 2016-11-10 18:58:38 +0100 |
| commit | fa3982c7c82add3d201aec860cb981a595f10be9 (patch) | |
| tree | 2522230132cfbf0f746d669fce11fec37a7f3bf3 /install/ui/src | |
| parent | d4ad0ca04c0ae445c784787a675ac84d2cbfd766 (diff) | |
| download | freeipa-fa3982c7c82add3d201aec860cb981a595f10be9.tar.gz freeipa-fa3982c7c82add3d201aec860cb981a595f10be9.tar.xz freeipa-fa3982c7c82add3d201aec860cb981a595f10be9.zip | |
Coverity - not initialized variable
The variable hasn't been initialized, now it is set to null by default.
Reviewed-By: Petr Vobornik <pvoborni@redhat.com>
Diffstat (limited to 'install/ui/src')
| -rw-r--r-- | install/ui/src/freeipa/widget.js | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
