X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fview.c;h=5d94cda05751a7a841c66f9700fa465215cea2d6;hp=8dcb0380ee34c848f3d88d60ddfa6eb7c13d8d30;hb=a924c24b2535cccdc0f5f991cd8ddcadcfa1f0d2;hpb=fd52bfa49753d67673ba8d7aef9239f5b16c1ad0 diff --git a/test/view.c b/test/view.c index 8dcb0380..5d94cda0 100644 --- a/test/view.c +++ b/test/view.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2012,2013 Free Software Foundation, Inc. * + * Copyright (c) 1998-2015,2016 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 * @@ -50,7 +50,7 @@ * scroll operation worked, and the refresh() code only had to do a * partial repaint. * - * $Id: view.c,v 1.93 2013/04/27 19:46:53 tom Exp $ + * $Id: view.c,v 1.97 2016/09/10 21:05:46 tom Exp $ */ #include @@ -188,20 +188,23 @@ ch_dup(char *src) for (j = k = 0; j < len; j++) { #if USE_WIDEC_SUPPORT rc = (size_t) check_mbytes(wch, src + j, len - j, state); - if (rc == (size_t) -1 || rc == (size_t) -2) + if (rc == (size_t) -1 || rc == (size_t) -2) { break; + } j += rc - 1; - if ((width = wcwidth(wch)) < 0) - break; - if ((width > 0 && l > 0) || l == CCHARW_MAX) { + width = wcwidth(wch); + if (width == 0) { + if (l == 0) { + wstr[l++] = L' '; + } + } else if ((l > 0) || (l == CCHARW_MAX)) { wstr[l] = L'\0'; l = 0; - if (setcchar(dst + k, wstr, 0, 0, NULL) != OK) + if (setcchar(dst + k, wstr, 0, 0, NULL) != OK) { break; + } ++k; } - if (width == 0 && l == 0) - wstr[l++] = L' '; wstr[l++] = wch; #else dst[k++] = (chtype) UChar(src[j]); @@ -329,10 +332,11 @@ main(int argc, char *argv[]) /* convert tabs and nonprinting chars so that shift will work properly */ for (s = buf, d = temp, col = 0; (*d = *s) != '\0'; s++) { if (*d == '\r') { - if (s[1] == '\n') + if (s[1] == '\n') { continue; - else + } else { break; + } } if (*d == '\n') { *d = '\0'; @@ -349,7 +353,8 @@ main(int argc, char *argv[]) col++; d++; } else { - sprintf(d, "\\%03o", UChar(*s)); + _nc_SPRINTF(d, _nc_SLIMIT(sizeof(temp) - (d - buf)) + "\\%03o", UChar(*s)); d += strlen(d); col = (int) (d - temp); } @@ -562,22 +567,25 @@ show_all(const char *tag) time_t this_time; #if CAN_RESIZE - sprintf(temp, "%.20s (%3dx%3d) col %d ", tag, LINES, COLS, shift); + _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) + "%.20s (%3dx%3d) col %d ", tag, LINES, COLS, shift); i = (int) strlen(temp); if ((i + 7) < (int) sizeof(temp)) { - sprintf(temp + i, "view %.*s", - (int) (sizeof(temp) - 7 - (size_t) i), - fname); + _nc_SPRINTF(temp + i, _nc_SLIMIT(sizeof(temp) - i) + "view %.*s", + (int) (sizeof(temp) - 7 - (size_t) i), + fname); } #else (void) tag; - sprintf(temp, "view %.*s", (int) sizeof(temp) - 7, fname); + _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) + "view %.*s", (int) sizeof(temp) - 7, fname); #endif move(0, 0); printw("%.*s", COLS, temp); clrtoeol(); this_time = time((time_t *) 0); - strncpy(temp, ctime(&this_time), 30); + _nc_STRNCPY(temp, ctime(&this_time), (size_t) 30); if ((i = (int) strlen(temp)) != 0) { temp[--i] = 0; if (move(0, COLS - i - 2) != ERR)