interface: Fix -Wuninitialized in RegionSupport.
Also trim trailing spaces...
This commit is contained in:
@@ -1524,8 +1524,8 @@ int
|
|||||||
BRegion::Support::XXorRegion(const BRegion* sra, const BRegion* srb,
|
BRegion::Support::XXorRegion(const BRegion* sra, const BRegion* srb,
|
||||||
BRegion* dr)
|
BRegion* dr)
|
||||||
{
|
{
|
||||||
BRegion* tra;
|
BRegion* tra = NULL;
|
||||||
BRegion* trb;
|
BRegion* trb = NULL;
|
||||||
|
|
||||||
if ((! (tra = CreateRegion())) || (! (trb = CreateRegion())))
|
if ((! (tra = CreateRegion())) || (! (trb = CreateRegion())))
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user