X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-config.c;h=87fad97ef1bf771a39010b2d7f280b1b500f6ef0;hb=refs%2Fchanges%2F57%2F20857%2F1;hp=1cc84b02cde737e0f0d8252c33c2a5fc585cc824;hpb=d9de3cd38b17ad16fb6ad6f74e83f4700c5f2b49;p=src%2Fapp-framework-binder.git diff --git a/src/afb-config.c b/src/afb-config.c index 1cc84b02..87fad97e 100644 --- a/src/afb-config.c +++ b/src/afb-config.c @@ -969,7 +969,7 @@ void afb_config_dump(struct json_object *config) static void on_environment(struct json_object *config, int optid, const char *name, void (*func)(struct json_object*, int, const char*)) { - char *value = getenv(name); + char *value = secure_getenv(name); if (value && *value) func(config, optid, value); @@ -977,7 +977,7 @@ static void on_environment(struct json_object *config, int optid, const char *na static void on_environment_enum(struct json_object *config, int optid, const char *name, int (*func)(const char*)) { - char *value = getenv(name); + char *value = secure_getenv(name); if (value) { if (func(value) == -1) @@ -989,7 +989,7 @@ static void on_environment_enum(struct json_object *config, int optid, const cha static void on_environment_bool(struct json_object *config, int optid, const char *name) { - char *value = getenv(name); + char *value = secure_getenv(name); int asbool; if (value) {