Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Patch for curses module
- X-seq: zsh-workers 36509
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: Sebastian Gniazdowski <sgniazdowski@xxxxxxxxx>, zsh-workers@xxxxxxx
- Subject: Re: Patch for curses module
- Date: Sat, 12 Sep 2015 09:08:35 -0700
- In-reply-to: <CAKc7PVAXVXOzwr3MO_oyBEgaWuSBHXz+CJH62UW3p73w=v+ipQ@mail.gmail.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <CAKc7PVAKmGZrDfbA-A8bpZ+6kM+ibBr6pkFbG_5=jumLJcREFw@mail.gmail.com> <CAKc7PVAXVXOzwr3MO_oyBEgaWuSBHXz+CJH62UW3p73w=v+ipQ@mail.gmail.com>
On Sep 12, 4:44pm, Sebastian Gniazdowski wrote:
}
} As it can be seen, hash misses are caused by the DISABLED flag ( "if
} (hp->flags & DISABLED) {" in function gethashnode). I attach two files
} with debug prints that produced the output. --- lines are hash table
} dumps, == are gethashnode() interiors. Can someone explain why
} sometimes a node has the DISABLED flag?
Try this?
diff --git a/Src/Modules/curses.c b/Src/Modules/curses.c
index 0054aef..64329f6 100644
--- a/Src/Modules/curses.c
+++ b/Src/Modules/curses.c
@@ -370,7 +370,7 @@ zcurses_colorget(const char *nam, char *colorpair)
return NULL;
}
- cpn = (Colorpairnode)zalloc(sizeof(struct colorpairnode));
+ cpn = (Colorpairnode)zshcalloc(sizeof(struct colorpairnode));
if (!cpn) {
zsfree(cp);
@@ -462,7 +462,7 @@ zccmd_init(const char *nam, char **args)
use_default_colors();
#endif
/* Initialise the default color pair, always 0 */
- cpn = (Colorpairnode)zalloc(sizeof(struct colorpairnode));
+ cpn = (Colorpairnode)zshcalloc(sizeof(struct colorpairnode));
if (cpn) {
cpn->colorpair = 0;
addhashnode(zcurses_colorpairs,
Messages sorted by:
Reverse Date,
Date,
Thread,
Author