Commit 4a345786 authored by Ulrich Sibiller's avatar Ulrich Sibiller

Dialog.c,Display.c,NXdixfonts.c: replace strncpy() by snprintf where appropriate

parent 5987a7b1
......@@ -53,7 +53,7 @@ struct UserGeometry{
extern Bool nxagentUseNXTrans;
extern char nxagentSessionId[];
extern char nxagentDisplayName[];
extern char nxagentDisplayName[1024];
extern char nxagentShadowDisplayName[];
extern char nxagentWindowName[];
extern char nxagentDialogName[];
......
......@@ -279,16 +279,13 @@ void nxagentLaunchDialog(DialogType dialogType)
if (dialogType == DIALOG_FAILED_RECONNECTION)
{
strncpy(dialogDisplay, nxagentDisplayName, sizeof(dialogDisplay) - 1);
snprintf(dialogDisplay, sizeof(dialogDisplay), "%s", nxagentDisplayName);
}
else
{
strcpy(dialogDisplay, ":");
strncat(dialogDisplay, display, sizeof(dialogDisplay) - 1 - 1);
snprintf(dialogDisplay, sizeof(dialogDisplay), ":%s", display);
}
dialogDisplay[sizeof(dialogDisplay) - 1] = '\0';
/*
* We don't want to receive SIGCHLD
* before we store the child pid.
......
......@@ -1150,9 +1150,7 @@ void nxagentOpenDisplay(int argc, char *argv[])
if (*nxagentDisplayName == '\0')
{
strncpy(nxagentDisplayName, XDisplayName(NULL), sizeof(nxagentDisplayName) - 1);
nxagentDisplayName[sizeof(nxagentDisplayName) - 1] = '\0';
snprintf(nxagentDisplayName, sizeof(nxagentDisplayName), "%s", XDisplayName(NULL));
}
nxagentCloseDisplay();
......@@ -1846,7 +1844,7 @@ static FILE *nxagentLookForIconFile(char *iconName, const char *permission,
{
strncpy(singlePath, path, (unsigned long)(end - path));
singlePath[(unsigned long)(end - path)] = 0;
singlePath[(unsigned long)(end - path)] = '\0';
path = end + 1;
}
......@@ -1859,7 +1857,7 @@ static FILE *nxagentLookForIconFile(char *iconName, const char *permission,
if (singlePath[strlen(singlePath)- 1] == slash[0])
{
singlePath[strlen(singlePath)- 1] = 0;
singlePath[strlen(singlePath)- 1] = '\0';
}
if (strlen(singlePath) + strlen(iconName) + 1 < sizeof(singlePath)<)
......@@ -1907,8 +1905,8 @@ Bool nxagentMakeIcon(Display *display, Pixmap *nxIcon, Pixmap *nxMask)
agentIconData=nxagentIconData;
}
snprintf(default_path, PATH_MAX-1, "/usr/NX/share/images/%s", agent_icon_name);
/* FIXME: use a compile time define here, /usr/NX is a nomachine path */
snprintf(default_path, sizeof(default_path), "/usr/NX/share/images/%s", agent_icon_name);
if ((icon_fp = fopen(default_path, "r")) == NULL)
{
......
......@@ -112,7 +112,7 @@ static const char *_NXGetFontPath(const char *path)
* Check the environment only once.
*/
if (*_NXFontPath != '\0')
if (_NXFontPath[0] != '\0')
{
return _NXFontPath;
}
......@@ -140,8 +140,7 @@ static const char *_NXGetFontPath(const char *path)
_NXGetFontPathError:
strncpy(_NXFontPath, path, sizeof(_NXFontPath) - 1);
_NXFontPath[sizeof(_NXFontPath) - 1] = '\0';
snprintf(_NXFontPath, sizeof(_NXFontPath), "%s", path);
#ifdef NX_TRANS_TEST
fprintf(stderr, "_NXGetFontPath: Using default font path [%s].\n", _NXFontPath);
......
......@@ -139,7 +139,7 @@ char stateFile[PATH_MAX];
void setStatePath(char* path)
{
strncpy(stateFile, path, PATH_MAX-1);
snprintf(stateFile, PATH_MAX, "%s", path);
}
void saveAgentState(char* state)
......
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