svn commit: r1717647 - /openoffice/trunk/main/basegfx/source/polygon/b2dpolypolygontools.cxx

2015-12-02 Thread pfg
Author: pfg
Date: Wed Dec  2 15:00:54 2015
New Revision: 1717647

URL: http://svn.apache.org/viewvc?rev=1717647=rev
Log:
Uninitialized scalar value
CID:984038

Modified:
openoffice/trunk/main/basegfx/source/polygon/b2dpolypolygontools.cxx

Modified: openoffice/trunk/main/basegfx/source/polygon/b2dpolypolygontools.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/basegfx/source/polygon/b2dpolypolygontools.cxx?rev=1717647=1717646=1717647=diff
==
--- openoffice/trunk/main/basegfx/source/polygon/b2dpolypolygontools.cxx 
(original)
+++ openoffice/trunk/main/basegfx/source/polygon/b2dpolypolygontools.cxx Wed 
Dec  2 15:00:54 2015
@@ -374,7 +374,7 @@ namespace basegfx
{
const B2DPolygon 
aCandidate(rCandidate.getB2DPolygon(a));
sal_uInt32 nNewEdgeIndex;
-   double fNewCut;
+   double fNewCut = 0.0;
const double 
fNewDistance(getSmallestDistancePointToPolygon(aCandidate, rTestPoint, 
nNewEdgeIndex, fNewCut));
 
if(DBL_MAX == fRetval || fNewDistance < fRetval)




svn commit: r1717642 - /openoffice/trunk/main/sal/osl/unx/file_misc.cxx

2015-12-02 Thread pfg
Author: pfg
Date: Wed Dec  2 14:47:01 2015
New Revision: 1717642

URL: http://svn.apache.org/viewvc?rev=1717642=rev
Log:
Off by one using readlink(2)

CID 705623, 982797

Modified:
openoffice/trunk/main/sal/osl/unx/file_misc.cxx

Modified: openoffice/trunk/main/sal/osl/unx/file_misc.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sal/osl/unx/file_misc.cxx?rev=1717642=1717641=1717642=diff
==
--- openoffice/trunk/main/sal/osl/unx/file_misc.cxx (original)
+++ openoffice/trunk/main/sal/osl/unx/file_misc.cxx Wed Dec  2 14:47:01 2015
@@ -969,7 +969,7 @@ static int oslDoCopyLink(const sal_Char*
 
 pszLinkContent[0] = '\0';
 
-nRet = readlink(pszSourceFileName,pszLinkContent,PATH_MAX);
+nRet = readlink(pszSourceFileName,pszLinkContent,PATH_MAX-1);
 
 if ( nRet < 0 )
 {




svn commit: r1717676 - /openoffice/trunk/main/sdext/source/pdfimport/tree/pdfiprocessor.hxx

2015-12-02 Thread pfg
Author: pfg
Date: Wed Dec  2 20:21:41 2015
New Revision: 1717676

URL: http://svn.apache.org/viewvc?rev=1717676=rev
Log:
Hint some opssible optimization to the compiler

Modified:
openoffice/trunk/main/sdext/source/pdfimport/tree/pdfiprocessor.hxx

Modified: openoffice/trunk/main/sdext/source/pdfimport/tree/pdfiprocessor.hxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sdext/source/pdfimport/tree/pdfiprocessor.hxx?rev=1717676=1717675=1717676=diff
==
--- openoffice/trunk/main/sdext/source/pdfimport/tree/pdfiprocessor.hxx 
(original)
+++ openoffice/trunk/main/sdext/source/pdfimport/tree/pdfiprocessor.hxx Wed Dec 
 2 20:21:41 2015
@@ -123,7 +123,7 @@ namespace pdfi
 void drawCharGlyphs( rtl::OUString& rGlyphs,
  ::com::sun::star::geometry::RealRectangle2D&  
rRect,
  ::com::sun::star::geometry::Matrix2D& 
rFontMatrix,
- GraphicsContext aGC,
+ const GraphicsContext aGC,
  Element* pCurElement,
  ParagraphElement* pPara,
  FrameElement* pFrame,




buildbot success in ASF Buildbot on openoffice-fbsd-nightly

2015-12-02 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/150

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-rat-aoo410

2015-12-02 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/144

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





buildbot failure in ASF Buildbot on openoffice-linux64-nightly

2015-12-02 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/160

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 build --all

Sincerely,
 -The Buildbot





svn commit: r1717711 - /openoffice/trunk/main/sal/osl/unx/conditn.c

2015-12-02 Thread pfg
Author: pfg
Date: Thu Dec  3 05:00:22 2015
New Revision: 1717711

URL: http://svn.apache.org/viewvc?rev=1717711=rev
Log:
Missing Unlock

Condition broadcast failed but silently try to unlock the mutex.

CID:705120

Modified:
openoffice/trunk/main/sal/osl/unx/conditn.c

Modified: openoffice/trunk/main/sal/osl/unx/conditn.c
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sal/osl/unx/conditn.c?rev=1717711=1717710=1717711=diff
==
--- openoffice/trunk/main/sal/osl/unx/conditn.c (original)
+++ openoffice/trunk/main/sal/osl/unx/conditn.c Thu Dec  3 05:00:22 2015
@@ -149,6 +149,7 @@ sal_Bool SAL_CALL osl_setCondition(oslCo
{
OSL_TRACE("osl_setCondition : condition broadcast failed. Errno: %d; 
%s\n",
   nRet, strerror(nRet));
+   (void)pthread_mutex_unlock(>m_Lock);
   return sal_False;
}
 




buildbot failure in ASF Buildbot on openoffice-fbsd-nightly

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

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 FAILED: failed build --all

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux64-rat

2015-12-02 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/148

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