]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/tinfo/alloc_entry.c
ncurses 5.9 - patch 20120225
[ncurses.git] / ncurses / tinfo / alloc_entry.c
index 9d70634e9c0c6b2d2cfe2756df0006d6abdddf48..9993cdf140443800ffc894492dcadfa19e3278af 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright (c) 1998-2010,2011 Free Software Foundation, Inc.              *
+ * Copyright (c) 1998-2011,2012 Free Software Foundation, Inc.              *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
@@ -47,7 +47,7 @@
 
 #include <tic.h>
 
-MODULE_ID("$Id: alloc_entry.c,v 1.52 2011/10/22 16:34:50 tom Exp $")
+MODULE_ID("$Id: alloc_entry.c,v 1.56 2012/02/22 22:34:31 tom Exp $")
 
 #define ABSENT_OFFSET    -1
 #define CANCELLED_OFFSET -2
@@ -131,7 +131,7 @@ _nc_save_str(const char *const string)
            result = (stringbuf + next_free - 1);
        }
     } else if (next_free + len < MAX_STRTAB) {
-       strcpy(&stringbuf[next_free], string);
+       _nc_STRCPY(&stringbuf[next_free], string, MAX_STRTAB);
        DEBUG(7, ("Saved string %s", _nc_visbuf(string)));
        DEBUG(7, ("at location %d", (int) next_free));
        next_free += len;
@@ -216,16 +216,19 @@ _nc_wrap_entry(ENTRY * const ep, bool copy_strings)
        if ((n = (unsigned) NUM_EXT_NAMES(tp)) != 0) {
            if (n < SIZEOF(offsets)) {
                size_t length = 0;
+               size_t offset;
                for (i = 0; i < n; i++) {
                    length += strlen(tp->ext_Names[i]) + 1;
                    offsets[i] = (int) (tp->ext_Names[i] - stringbuf);
                }
                if ((tp->ext_str_table = typeMalloc(char, length)) == 0)
                      _nc_err_abort(MSG_NO_MEMORY);
-               for (i = 0, length = 0; i < n; i++) {
-                   tp->ext_Names[i] = tp->ext_str_table + length;
-                   strcpy(tp->ext_Names[i], stringbuf + offsets[i]);
-                   length += strlen(tp->ext_Names[i]) + 1;
+               for (i = 0, offset = 0; i < n; i++) {
+                   tp->ext_Names[i] = tp->ext_str_table + offset;
+                   _nc_STRCPY(tp->ext_Names[i],
+                              stringbuf + offsets[i],
+                              length - offset);
+                   offset += strlen(tp->ext_Names[i]) + 1;
                }
            }
        }