X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fdots.c;h=36509ee0f887ca28d2763f1bf658319dc1ce0e97;hp=079342372331bed1c15b6fac23b19bbc787af917;hb=e656c0ca01fc196f0eb66972af7fc51cb83d9651;hpb=8d3ea9021573747ecd129228ba7782a03243f62c diff --git a/test/dots.c b/test/dots.c index 07934237..36509ee0 100644 --- a/test/dots.c +++ b/test/dots.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1999-2013,2017 Free Software Foundation, Inc. * + * Copyright (c) 1999-2017,2019 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 * @@ -29,7 +29,7 @@ /* * Author: Thomas E. Dickey 1999 * - * $Id: dots.c,v 1.33 2017/11/24 19:26:31 tom Exp $ + * $Id: dots.c,v 1.34 2019/01/21 14:20:18 tom Exp $ * * A simple demo of the terminfo interface. */ @@ -143,11 +143,16 @@ main(int argc, int f_option = 0; int m_option = 2; int s_option = 1; + size_t need; + char *my_env; while ((x = getopt(argc, argv, "T:efm:s:")) != -1) { switch (x) { case 'T': - putenv(strcat(strcpy(malloc(6 + strlen(optarg)), "TERM="), optarg)); + need = 6 + strlen(optarg); + my_env = malloc(need); + _nc_SPRINTF(my_env, _nc_SLIMIT(need) "TERM=%s", optarg); + putenv(my_env); break; #if HAVE_USE_ENV case 'e':