[hackers] [dmenu] apply nibble patch removing per-item length limit || pancake<nopcode.org>

From: <hg_AT_suckless.org>
Date: Thu, 1 Apr 2010 17:32:09 +0000 (UTC)

changeset: 292:b21ae6af42b7
tag: tip
user: pancake<nopcode.org>
date: Thu Apr 01 19:30:21 2010 +0200
files: dmenu.c
description:
apply nibble patch removing per-item length limit

diff -r 8d30fd137bad -r b21ae6af42b7 dmenu.c
--- a/dmenu.c Thu Apr 01 19:10:41 2010 +0200
+++ b/dmenu.c Thu Apr 01 19:30:21 2010 +0200
@@ -622,24 +622,31 @@
 void
 readstdin(void) {
         char *p, buf[1024];
- unsigned int len = 0, max = 0;
+ unsigned int len = 0, blen = 0, max = 0;
         Item *i, *new;
 
- i = NULL;
+ i = 0, p = NULL;
         while(fgets(buf, sizeof buf, stdin)) {
- len = strlen(buf);
- if(buf[len-1] == '\n')
- buf[--len] = '\0';
- if(!(p = strdup(buf)))
- eprint("fatal: could not strdup() %u bytes\n", len);
+ len += (blen = strlen(buf));
+ if(!(p = realloc(p, len))) {
+ eprint("fatal: could not realloc() %u bytes\n", len);
+ return;
+ }
+ memcpy (p + len - blen, buf, blen);
+ if (p[len - 1] == '\n')
+ p[len - 1] = 0;
+ else if (!feof(stdin))
+ continue;
                 if(max < len) {
                         maxname = p;
                         max = len;
                 }
+ len = 0;
                 if(!(new = (Item *)malloc(sizeof(Item))))
                         eprint("fatal: could not malloc() %u bytes\n", sizeof(Item));
                 new->next = new->left = new->right = NULL;
                 new->text = p;
+ p = NULL;
                 if(!i)
                         allitems = new;
                 else
Received on Thu Apr 01 2010 - 17:32:09 UTC

This archive was generated by hypermail 2.2.0 : Thu Apr 01 2010 - 17:36:07 UTC