diff options
author | dscho <dscho> | 2001-11-26 17:06:39 +0000 |
---|---|---|
committer | dscho <dscho> | 2001-11-26 17:06:39 +0000 |
commit | 3825ed9fb99d0626c57deffe19b825e9619fafe4 (patch) | |
tree | c9b3166532195e35a02478640b55d195bd205652 /x11vnc.c | |
parent | 7094fbc15be9f4ae0dea90293d23fda25ddcfd86 (diff) | |
download | libtdevnc-3825ed9fb99d0626c57deffe19b825e9619fafe4.tar.gz libtdevnc-3825ed9fb99d0626c57deffe19b825e9619fafe4.zip |
no crash when display was wrong
Diffstat (limited to 'x11vnc.c')
-rw-r--r-- | x11vnc.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -243,6 +243,11 @@ int main(int argc,char** argv) if(dpy==0) dpy = XOpenDisplay(""); + if(dpy==0) { + fprintf(stderr,"Couldn't open display!\n"); + exit(2); + } + xscreen = DefaultScreen(dpy); init_keycodes(); |