fix: replace raw env pointer with strdup to avoid dangling reference in get_prompt_model
This commit is contained in:
parent
a19800f7ae
commit
a35080015a
2
r.h
2
r.h
@ -73,7 +73,7 @@ void set_prompt_model(const char *model) {
|
||||
|
||||
const char *get_prompt_model() {
|
||||
if (_model == NULL && getenv("R_MODEL") != NULL) {
|
||||
_model = getenv("R_MODEL");
|
||||
_model = strdup(getenv("R_MODEL"));
|
||||
}
|
||||
if (_model) {
|
||||
return _model;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user