mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
test: initialize hwdb so that the test won't try to free memory it has never allocated
See https://github.com/systemd/systemd/pull/10678#issuecomment-436790906.
This commit is contained in:
parent
79f6178ee1
commit
86f4edef54
@ -5,7 +5,7 @@
|
||||
#include "tests.h"
|
||||
|
||||
static int test_failed_enumerate(void) {
|
||||
_cleanup_(sd_hwdb_unrefp) sd_hwdb *hwdb;
|
||||
_cleanup_(sd_hwdb_unrefp) sd_hwdb *hwdb = NULL;
|
||||
const char *key, *value;
|
||||
int r;
|
||||
|
||||
@ -29,7 +29,7 @@ static int test_failed_enumerate(void) {
|
||||
"evdev:atkbd:dmi:bvnXXX:bvrYYY:bdZZZ:svnDellXXX:pnYYY"
|
||||
|
||||
static void test_basic_enumerate(void) {
|
||||
_cleanup_(sd_hwdb_unrefp) sd_hwdb *hwdb;
|
||||
_cleanup_(sd_hwdb_unrefp) sd_hwdb *hwdb = NULL;
|
||||
const char *key, *value;
|
||||
size_t len1 = 0, len2 = 0;
|
||||
int r;
|
||||
|
Loading…
Reference in New Issue
Block a user