Fixed SegFault if TERM variable is not set
This commit is contained in:
parent
4fd7ab2ce4
commit
45856e02ed
@ -364,7 +364,8 @@ int main(int argc, char ** argv) {
|
||||
/* We are running standalone, retrieve the
|
||||
* terminal type from the environment. */
|
||||
char * nterm = getenv("TERM");
|
||||
strcpy(term, nterm);
|
||||
if (nterm)
|
||||
strcpy(term, nterm);
|
||||
|
||||
/* Also get the number of columns */
|
||||
struct winsize w;
|
||||
|
Loading…
Reference in New Issue
Block a user