aboutsummaryrefslogtreecommitdiffstats
path: root/src/nnn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nnn.c')
-rw-r--r--src/nnn.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 62c78c0..c399791 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -2074,13 +2074,16 @@ static int xlink(char *suffix, char *path, char *buf, int *presel, int type)
static bool parsebmstr(void)
{
int i = 0;
- bmstr = strdup(getenv(env_cfg[NNN_BMS]));
- char *bms = bmstr;
- char *nextkey = bms;
+ char *nextkey;
+ char *bms = getenv(env_cfg[NNN_BMS]);
if (!bms || !*bms)
return TRUE;
+ bmstr = strdup(bms);
+ bms = bmstr;
+ nextkey = bms;
+
while (*bms && i < BM_MAX) {
if (bms == nextkey) {
bookmark[i].key = *bms;