buildbot success in ASF Buildbot on openoffice-linux64-rat-aoo410

2015-12-01 Thread buildbot
The Buildbot has detected a passing build on builder 
openoffice-linux64-rat-aoo410 while building ASF Buildbot. Full details are 
available at:
http://ci.apache.org/builders/openoffice-linux64-rat-aoo410/builds/143

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-rat-aoo410' 
triggered this build
Build Source Stamp: [branch openoffice/branches/AOO410] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





svn commit: r1717552 - /openoffice/trunk/main/vcl/source/gdi/pdfwriter_impl.cxx

2015-12-01 Thread pfg
Author: pfg
Date: Tue Dec  1 22:53:35 2015
New Revision: 1717552

URL: http://svn.apache.org/viewvc?rev=1717552=rev
Log:
Prevent division by zero

CID:735658, 735659

Modified:
openoffice/trunk/main/vcl/source/gdi/pdfwriter_impl.cxx

Modified: openoffice/trunk/main/vcl/source/gdi/pdfwriter_impl.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/vcl/source/gdi/pdfwriter_impl.cxx?rev=1717552=1717551=1717552=diff
==
--- openoffice/trunk/main/vcl/source/gdi/pdfwriter_impl.cxx (original)
+++ openoffice/trunk/main/vcl/source/gdi/pdfwriter_impl.cxx Tue Dec  1 22:53:35 
2015
@@ -8929,9 +8929,9 @@ static double calcAngle( const Rectangle
 double fX = (double)aPoint.X();
 double fY = (double)-aPoint.Y();
 
-if( rRect.GetWidth() > rRect.GetHeight() )
+if((rRect.GetWidth() > rRect.GetHeight()) && (rRect.GetHeight() != 0 ))
 fY = fY*((double)rRect.GetWidth()/(double)rRect.GetHeight());
-else if( rRect.GetHeight() > rRect.GetWidth() )
+else if((rRect.GetHeight() > rRect.GetWidth()) && (rRect.GetWidth() != 0))
 fX = fX*((double)rRect.GetHeight()/(double)rRect.GetWidth());
 return atan2( fY, fX );
 }




svn commit: r1717568 - /openoffice/trunk/main/basic/source/runtime/methods.cxx

2015-12-01 Thread pfg
Author: pfg
Date: Wed Dec  2 04:59:27 2015
New Revision: 1717568

URL: http://svn.apache.org/viewvc?rev=1717568=rev
Log:
Unitialized scalar variable

CID: 707497, 

(Errata:  r1717567) corresponds to CID 707496)




Modified:
openoffice/trunk/main/basic/source/runtime/methods.cxx

Modified: openoffice/trunk/main/basic/source/runtime/methods.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/basic/source/runtime/methods.cxx?rev=1717568=1717567=1717568=diff
==
--- openoffice/trunk/main/basic/source/runtime/methods.cxx (original)
+++ openoffice/trunk/main/basic/source/runtime/methods.cxx Wed Dec  2 04:59:27 
2015
@@ -2048,7 +2048,7 @@ RTLFUNC(TimeValue)
SbiInstance::PrepareNumberFormatter( pFormatter, n, n, 
n );
}
 
-   sal_uInt32 nIndex;
+   sal_uInt32 nIndex = 0;
double fResult;
sal_Bool bSuccess = pFormatter->IsNumberFormat( 
rPar.Get(1)->GetString(),

   nIndex, fResult );




svn commit: r1717569 - /openoffice/trunk/main/basic/source/runtime/methods1.cxx

2015-12-01 Thread pfg
Author: pfg
Date: Wed Dec  2 05:09:40 2015
New Revision: 1717569

URL: http://svn.apache.org/viewvc?rev=1717569=rev
Log:
Unitialized scalar variable

CID:707498 

Modified:
openoffice/trunk/main/basic/source/runtime/methods1.cxx

Modified: openoffice/trunk/main/basic/source/runtime/methods1.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/basic/source/runtime/methods1.cxx?rev=1717569=1717568=1717569=diff
==
--- openoffice/trunk/main/basic/source/runtime/methods1.cxx (original)
+++ openoffice/trunk/main/basic/source/runtime/methods1.cxx Wed Dec  2 05:09:40 
2015
@@ -268,7 +268,7 @@ RTLFUNC(CCur)  // JSM
 (void)pBasic;
 (void)bWrite;
 
-   SbxINT64 nCur;
+   SbxINT64 nCur = 0;
if ( rPar.Count() == 2 )
{
SbxVariable *pSbxVariable = rPar.Get(1);




buildbot failure in ASF Buildbot on openoffice-linux64-nightly

2015-12-01 Thread buildbot
The Buildbot has detected a failed build on builder openoffice-linux64-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-nightly/builds/159

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

BUILD FAILED: failed

Sincerely,
 -The Buildbot





svn commit: r1717567 - /openoffice/trunk/main/basic/source/runtime/methods.cxx

2015-12-01 Thread pfg
Author: pfg
Date: Wed Dec  2 04:34:56 2015
New Revision: 1717567

URL: http://svn.apache.org/viewvc?rev=1717567=rev
Log:
Uninitialized scalar variable

CID:707497

Modified:
openoffice/trunk/main/basic/source/runtime/methods.cxx

Modified: openoffice/trunk/main/basic/source/runtime/methods.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/basic/source/runtime/methods.cxx?rev=1717567=1717566=1717567=diff
==
--- openoffice/trunk/main/basic/source/runtime/methods.cxx (original)
+++ openoffice/trunk/main/basic/source/runtime/methods.cxx Wed Dec  2 04:34:56 
2015
@@ -1986,7 +1986,7 @@ RTLFUNC(DateValue)
SbiInstance::PrepareNumberFormatter( pFormatter, n, n, 
n );
}
 
-   sal_uInt32 nIndex;
+   sal_uInt32 nIndex = 0;
double fResult;
String aStr( rPar.Get(1)->GetString() );
sal_Bool bSuccess = pFormatter->IsNumberFormat( aStr, nIndex, 
fResult );




buildbot success in ASF Buildbot on openoffice-fbsd-nightly

2015-12-01 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-fbsd-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-fbsd-nightly/builds/149

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-fbsd2_64bit

Build Reason: The Nightly scheduler named 'openoffice-fbsd-nightly' triggered 
this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux64-nightly

2015-12-01 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux64-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-nightly/builds/158

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux64-rat

2015-12-01 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux64-rat 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-rat/builds/147

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-rat' triggered 
this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot