Mercurial > pidgin
diff src/protocols/zephyr/ZLocations.c @ 10326:72f671a4e153
[gaim-migrate @ 11533]
a Zephyr fix from Erik Lee.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Tue, 07 Dec 2004 23:25:15 +0000 |
parents | 43d6c08d7e96 |
children | 0e9be9a1d68d |
line wrap: on
line diff
--- a/src/protocols/zephyr/ZLocations.c Tue Dec 07 04:59:27 2004 +0000 +++ b/src/protocols/zephyr/ZLocations.c Tue Dec 07 23:25:15 2004 +0000 @@ -5,7 +5,7 @@ * Created by: Robert French * * $Source$ - * $Author: chipx86 $ + * $Author: seanegan $ * * Copyright (c) 1987,1988,1991 by the Massachusetts Institute of Technology. * For copying and distribution information, see the file @@ -91,7 +91,8 @@ } #ifndef X_DISPLAY_MISSING if ((display = getenv("DISPLAY")) && *display) { - (void) strcpy(mytty, display); + (void) strncpy(mytty, sizeof(mytty), display); + mytty[sizeof(mytty)-1] = '\0'; } else { #endif ttyp = ttyname(0);