trivial: Fix compilation issue with GCC 4.5

For some reason, GCC throws an error cause the
"command" var might be not initialized.
So we initialize it now.
This commit is contained in:
Matthias Klumpp 2010-12-12 18:30:45 +01:00
parent 5207527785
commit 02721af4f8

View File

@ -687,7 +687,7 @@ pk_transaction_process_script (PkTransaction *transaction, const gchar *filename
GFile *file = NULL;
GFileInfo *info = NULL;
guint file_uid;
gchar *command;
gchar *command = NULL;
gint exit_status = 0;
gboolean ret;
GError *error = NULL;