overview_plugin_test.patch 785 B

12345678910111213141516171819202122
  1. diff --git a/overview/overview/overviewscintilla.c b/overview/overview/overviewscintilla.c
  2. index 41840638..7158179e 100644
  3. --- a/overview/overview/overviewscintilla.c
  4. +++ b/overview/overview/overviewscintilla.c
  5. @@ -796,14 +796,14 @@ overview_scintilla_get_property (GObject *object,
  6. break;
  7. case PROP_OVERLAY_COLOR:
  8. {
  9. - OverviewColor color;
  10. + OverviewColor color = { 0 };
  11. overview_scintilla_get_overlay_color (self, &color);
  12. g_value_set_boxed (value, &color);
  13. break;
  14. }
  15. case PROP_OVERLAY_OUTLINE_COLOR:
  16. {
  17. - OverviewColor color;
  18. + OverviewColor color = { 0 };
  19. overview_scintilla_get_overlay_outline_color (self, &color);
  20. g_value_set_boxed (value, &color);
  21. break;