diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2012-08-09 19:12:28 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2012-08-09 19:12:28 +0000 |
| commit | 81e302f81e877421e5484b086ab6472c557ebc74 (patch) | |
| tree | 691753a77f5825ea2a2ee628d3471590ad83dbf3 /src/spray-context.cpp | |
| parent | Warnings. Fix for Bug #323414 (strict-aliasing rules warnings). (diff) | |
| download | inkscape-81e302f81e877421e5484b086ab6472c557ebc74.tar.gz inkscape-81e302f81e877421e5484b086ab6472c557ebc74.zip | |
Warnings cleanup (see Bug #1034663).
(bzr r11602)
Diffstat (limited to 'src/spray-context.cpp')
| -rw-r--r-- | src/spray-context.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/spray-context.cpp b/src/spray-context.cpp index dc0ffdf0f..8013d9e3a 100644 --- a/src/spray-context.cpp +++ b/src/spray-context.cpp @@ -474,10 +474,10 @@ bool sp_spray_recursive(SPDesktop *desktop, } } else if (mode == SPRAY_MODE_SINGLE_PATH) { - SPItem *father; //initial Object - SPItem *item_copied; //Projected Object - SPItem *unionResult; //previous union - SPItem *son; //father copy + SPItem *father = NULL; //initial Object + SPItem *item_copied = NULL; //Projected Object + SPItem *unionResult = NULL; //previous union + SPItem *son = NULL; //father copy int i=1; for (GSList *items = g_slist_copy((GSList *) selection->itemList()); |
