mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Initialize some variables before usage so that gcc does not complain.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13798 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
293e60d88f
commit
e8f409211a
@ -838,8 +838,8 @@ gxi_update_default_enc_combo (GncXmlImportData *data)
|
||||
static void
|
||||
gxi_update_summary_label (GncXmlImportData *data)
|
||||
{
|
||||
gchar *string;
|
||||
gboolean show;
|
||||
gchar *string=NULL;
|
||||
gboolean show=FALSE;
|
||||
|
||||
if (data->n_unassigned) {
|
||||
if (data->n_impossible) {
|
||||
@ -1149,7 +1149,7 @@ gxi_string_combo_changed_cb (GtkComboBox *combo, GncXmlImportData *data)
|
||||
GList *found, *default_conv;
|
||||
gboolean is_active;
|
||||
ambiguous_type *amb;
|
||||
conv_type *prev_conv, *curr_conv;
|
||||
conv_type *prev_conv, *curr_conv=NULL;
|
||||
gpointer ptr;
|
||||
GQuark prev_enc, curr_enc;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user