From f52325f051c62774f3c74460084398b759f2e9b9 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Wed, 1 Mar 2017 16:34:01 +0100 Subject: [PATCH] Initialize pointer class member Found by coverity. --- src/ErrorList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ErrorList.cpp b/src/ErrorList.cpp index 9b6fe240d2..1613ce7e61 100644 --- a/src/ErrorList.cpp +++ b/src/ErrorList.cpp @@ -32,7 +32,7 @@ ErrorItem::ErrorItem(docstring const & error_, docstring const & description_, ErrorItem::ErrorItem() - : start(TexRow::text_none), end(TexRow::text_none) + : start(TexRow::text_none), end(TexRow::text_none), buffer(0) {}