Minor refactor

This commit is contained in:
Arun Prakash Jana 2020-02-13 19:54:01 +05:30
parent 4bd742dafb
commit ed616cf746
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 6 additions and 9 deletions

View File

@ -937,12 +937,10 @@ static void *xmemrchr(uchar *s, uchar ch, size_t n)
uchar *ptr = s + n;
do {
--ptr;
if (*ptr == ch)
do
if (*--ptr == ch)
return ptr;
} while (s != ptr);
while (s != ptr);
return NULL;
}
@ -3264,13 +3262,12 @@ static void save_session(bool last_session, int *presel)
char *sname;
bool status = FALSE;
memset(&header, 0, sizeof(session_header_t));
header.ver = SESSIONS_VERSION;
for (i = 0; i < CTX_MAX; ++i) {
if (!g_ctx[i].c_cfg.ctxactive) {
header.pathln[i] = header.nameln[i]
= header.lastln[i] = header.fltrln[i] = 0;
} else {
if (g_ctx[i].c_cfg.ctxactive) {
if (cfg.curctx == i && ndents)
/* Update current file name, arrows don't update it */
xstrlcpy(g_ctx[i].c_name, dents[cur].name, NAME_MAX + 1);