Commit 5036ffbe authored by Reinhard Tartler's avatar Reinhard Tartler

Imported nx-X11-3.3.0-7.tar.gz

Summary: Imported nx-X11-3.3.0-7.tar.gz Keywords: Imported nx-X11-3.3.0-7.tar.gz into Git repository
parent bd433c64
ChangeLog:
nx-X11-3.3.0-7
- Fixed TR08G02257. The maximum client condition was reached because
available fd exhausted. This bug was caused by a function in font
library not closing the file before a return on error breaking the
flow of normal execution.
- Fixed TR06G02225. The implementation of Xvprintf() has been reviewed
to work on more platforms. Previous implementation caused a failure
in the build of keyboard map on some platform like Solaris 8 and 9.
nx-X11-3.3.0-6
- Fixed TR03G02198. Reimplemented Xvprintf() in Xserver/os to handle
......
ChangeLog:
nx-X11-3.3.0-7
- Fixed TR08G02257. The maximum client condition was reached because
available fd exhausted. This bug was caused by a function in font
library not closing the file before a return on error breaking the
flow of normal execution.
- Fixed TR06G02225. The implementation of Xvprintf() has been reviewed
to work on more platforms. Previous implementation caused a failure
in the build of keyboard map on some platform like Solaris 8 and 9.
nx-X11-3.3.0-6
- Fixed TR03G02198. Reimplemented Xvprintf() in Xserver/os to handle
......
......@@ -867,8 +867,10 @@ FontEncReallyReallyLoad(const char *charset,
if(!strcasecmp(encoding_name, charset)) {
/* Found it */
if(file_name[0] != '/') {
if(strlen(dir) + strlen(file_name) >= MAXFONTFILENAMELEN)
if(strlen(dir) + strlen(file_name) >= MAXFONTFILENAMELEN) {
fclose(file);
return NULL;
}
strcpy(buf, dir);
strcat(buf, file_name);
} else {
......@@ -877,6 +879,7 @@ FontEncReallyReallyLoad(const char *charset,
f = FontFileOpen(buf);
if(f == NULL) {
fclose(file);
return NULL;
}
encoding = parseEncodingFile(f, 0);
......
......@@ -43,7 +43,7 @@
# endif
#endif
#ifdef NXAGENT_SERVER
#ifdef NX_TRANS_SOCKET
#define PANIC
#define WARNING
......
......@@ -43,7 +43,7 @@
# endif
#endif
#ifdef NXAGENT_SERVER
#ifdef NX_TRANS_SOCKET
#define PANIC
#define WARNING
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment