ERR: Using KWSYSPE_PIPE_BUFFER_SIZE in place of separate bufferSize constant for consistency.
This commit is contained in:
parent
86195caf6a
commit
6df06682a5
@ -1738,8 +1738,7 @@ static void kwsysProcessKill(pid_t process_id)
|
|||||||
#else
|
#else
|
||||||
char fname[4096];
|
char fname[4096];
|
||||||
#endif
|
#endif
|
||||||
const int bufferSize = 1024;
|
char buffer[KWSYSPE_PIPE_BUFFER_SIZE+1];
|
||||||
char buffer[1025]; /* should be buffersize +1 but fails to build on hp cc*/
|
|
||||||
struct dirent* d;
|
struct dirent* d;
|
||||||
|
|
||||||
/* Each process has a directory in /proc whose name is the pid.
|
/* Each process has a directory in /proc whose name is the pid.
|
||||||
@ -1762,7 +1761,7 @@ static void kwsysProcessKill(pid_t process_id)
|
|||||||
FILE* f = fopen(fname, "r");
|
FILE* f = fopen(fname, "r");
|
||||||
if(f)
|
if(f)
|
||||||
{
|
{
|
||||||
int nread = fread(buffer, 1, bufferSize, f);
|
int nread = fread(buffer, 1, KWSYSPE_PIPE_BUFFER_SIZE, f);
|
||||||
buffer[nread] = '\0';
|
buffer[nread] = '\0';
|
||||||
if(nread > 0)
|
if(nread > 0)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user