mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 15:20:08 +01:00
Fix uninitialized variable
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2853 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
03e118462b
commit
ccbc1df785
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ vpnc_watch_cb (GPid pid, gint status, gpointer user_data)
|
|||
{
|
||||
NMVPNCPlugin *plugin = NM_VPNC_PLUGIN (user_data);
|
||||
NMVPNCPluginPrivate *priv = NM_VPNC_PLUGIN_GET_PRIVATE (plugin);
|
||||
guint error;
|
||||
guint error = 0;
|
||||
|
||||
if (WIFEXITED (status)) {
|
||||
error = WEXITSTATUS (status);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue