mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-06-01 17:38:18 +02:00
Merge branch 'main' into 'main'
dbus-uuidgen: Enable stack memory protection See merge request dbus/dbus!541
This commit is contained in:
commit
b5f08312af
1 changed files with 3 additions and 3 deletions
|
|
@ -125,7 +125,7 @@ main (int argc, char *argv[])
|
|||
if (get_uuid && ensure_uuid)
|
||||
{
|
||||
fprintf (stderr, "Can't specify both --get and --ensure\n");
|
||||
exit (1);
|
||||
return 1;
|
||||
}
|
||||
|
||||
dbus_error_init (&error);
|
||||
|
|
@ -155,10 +155,10 @@ main (int argc, char *argv[])
|
|||
{
|
||||
fprintf (stderr, "%s\n", error.message);
|
||||
dbus_error_free (&error);
|
||||
exit (1);
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
exit (0);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue