mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
prefs: Don't mix allocator types
This commit is contained in:
parent
815ca16f48
commit
592cf2c69b
@ -164,7 +164,7 @@ prefs_get_string(preference_t pref)
|
||||
|
||||
if (result == NULL) {
|
||||
if (def) {
|
||||
return strdup(def);
|
||||
return g_strdup(def);
|
||||
} else {
|
||||
return NULL;
|
||||
}
|
||||
@ -177,7 +177,7 @@ void
|
||||
prefs_free_string(char *pref)
|
||||
{
|
||||
if (pref) {
|
||||
free(pref);
|
||||
g_free(pref);
|
||||
}
|
||||
pref = NULL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user