[Libreoffice-commits] core.git: rsc/source
Stephan Bergmann
sbergman at redhat.com
Fri Sep 19 00:02:11 PDT 2014
rsc/source/rscpp/cpp1.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit b870ecd6c4fdf789322986f9f2cdc567f6401f22
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Fri Sep 19 09:01:30 2014 +0200
warning C4701: potentially uninitialized local variable
Change-Id: I163033dc6f1fa17a96cb9da18f73ef8cdd367f00
diff --git a/rsc/source/rscpp/cpp1.c b/rsc/source/rscpp/cpp1.c
index 9f18dc4..7f2dce1 100644
--- a/rsc/source/rscpp/cpp1.c
+++ b/rsc/source/rscpp/cpp1.c
@@ -234,7 +234,7 @@ int MAIN(int argc, char** argv)
{
int i;
char** useargv = 0;
- char** pfargv;
+ char** pfargv = NULL;
if( nRunde == 0 )
{
More information about the Libreoffice-commits
mailing list