summaryrefslogtreecommitdiff
path: root/sd/qa/unit
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-07-16 10:23:46 +0200
committerMichael Stahl <mstahl@redhat.com>2012-07-16 10:23:46 +0200
commit0c803b1cddb273434d1f102a91f650cd20bbb0e0 (patch)
treebfeb9c16edeac9b20eb97e79a249077df1f8989d /sd/qa/unit
parentc2a73a4780dbab2abdfb4654ddc2bf1356127eb0 (diff)
warning C4701: potentially uninitialized local variable used
Change-Id: I8e8dec18e1bec67154304b8c96ff034d6ab5d791
Diffstat (limited to 'sd/qa/unit')
-rw-r--r--sd/qa/unit/regression-test.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/qa/unit/regression-test.cxx b/sd/qa/unit/regression-test.cxx
index 0b1dee1c7fc7..d9ce42ce2d36 100644
--- a/sd/qa/unit/regression-test.cxx
+++ b/sd/qa/unit/regression-test.cxx
@@ -139,7 +139,7 @@ FileFormat aFileFormats[] = {
::sd::DrawDocShellRef SdFiltersTest::loadURL( const rtl::OUString &rURL )
{
- FileFormat *pFmt;
+ FileFormat *pFmt(0);
for (size_t i = 0; i < SAL_N_ELEMENTS (aFileFormats); i++)
{