-
ndade committed patchset 127 of module pwsafe to the pwsafe CVS repository, changing 2 files.
2007-08-12 12:33:06 UTC in pwsafe
-
Your text is buzz-word compliant, but to be honest with you it is meaningless. Are you in marketing? You come off like a koolaide drinker.
Anyway please resubmit your question in the form of an answer.
2007-08-12 12:19:30 UTC in pwsafe
-
ndade committed patchset 126 of module pwsafe to the pwsafe CVS repository, changing 1 files.
2007-08-12 12:01:29 UTC in pwsafe
-
ltp/testcases/kernel/syscalls/read/read04.c writes TST_SIZE = 26 bytes "ABC..Z" to a file and reads them back in to prbuf[] which it not terminated.
One simple fix it to write the '\0' to the test file, thus reading it in.
2006-12-04 14:37:53 UTC in Linux Test Project
-
ltp/testcases/kernel/syscalls/pipe/pipe10.c writes a string to the child. The length written is strlen(wrbuf), thus it does not include the terminating '\0'. The child read(2)s this into rebuf, and then calls strcmp(rebuf, wrbuf). Since rebuf is not properly terminated strcmp() can fail.
It looks like someone tried to fix this by adding a '\0' at the end of the string used to initialize wrbuf,
2006-12-04 13:42:19 UTC in Linux Test Project
-
ltp/testcases/kernel/syscalls/exit/exit02.c reads 4 bytes from a file into rbuf[], then calls strcmp(rbuf, wbuf). This is causing the test to fail not because it went wrong but because rbuf did not happen to contain a '\0' at rbuf[4].
changing to strncmp() fixed this.
--- ltp-full-20060717/testcases/kernel/syscalls/exit/exit02.c.orig 2006-12-03 06:59:51.000000000 -0800
+++ ltp-full-2.
2006-12-03 15:47:35 UTC in Linux Test Project
-
The description of ltp/testcases/kernel/syscalls/exit/exit02.c says:
* ALGORITHM
* Fork a process that creates a file and writes a few bytes, and
* calls exit WITHOUT calling close(). The parent then reads ...
But the code DOES close(2) the file, on line 118:
107 if (pid == 0) { /* child */
108 sleep(1);
109 if ((filed = creat(filen, MODE)) == -1) {.
2006-12-03 14:45:25 UTC in Linux Test Project
-
ndade committed patchset 125 of module pwsafe to the pwsafe CVS repository, changing 1 files.
2006-03-18 14:17:41 UTC in pwsafe
-
ndade committed patchset 124 of module pwsafe to the pwsafe CVS repository, changing 1 files.
2005-10-01 00:13:17 UTC in pwsafe
-
ndade committed patchset 123 of module pwsafe to the pwsafe CVS repository, changing 2 files.
2005-09-30 21:06:37 UTC in pwsafe