aboutsummaryrefslogtreecommitdiff
path: root/src/xbouncing.c
diff options
context:
space:
mode:
authorDavid Timber <dxdt@dev.snart.me>2024-11-01 17:01:50 +0100
committerDavid Timber <dxdt@dev.snart.me>2024-11-01 17:01:50 +0100
commitc0afe2bac60c18cf25b8d5fa9aa9ac193ab952e4 (patch)
tree00d9a0e52feb112de0245a0ec905f2a317f28b52 /src/xbouncing.c
parentccea7db392fbbf9c8c8a742b20c79cd913e19f36 (diff)
Fix crash bug, update docHEADmaster
Diffstat (limited to 'src/xbouncing.c')
-rw-r--r--src/xbouncing.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/xbouncing.c b/src/xbouncing.c
index d1f83b4..2f15ef0 100644
--- a/src/xbouncing.c
+++ b/src/xbouncing.c
@@ -127,13 +127,12 @@ static void update_screen_info (void) {
static void print_l18n_xopen_err (void) {
const char *LANG = getenv("LANG");
- const char *msg;
+ const char *msg = "Could not open X display.";
- if (strncmp(LANG, "ko", 2) == 0) {
- msg = "X 서버 연결 실패.";
- }
- else {
- msg = "Could not open X display.";
+ if (LANG != NULL) {
+ if (strncmp(LANG, "ko", 2) == 0) {
+ msg = "X 서버 연결 실패.";
+ }
}
fprintf(stderr, "%s\n", msg);