Skip to content

Commit

Permalink
2009-09-02 Rodrigo Kumpera <[email protected]>
Browse files Browse the repository at this point in the history
	* time.c (Mono_Posix_Syscall_nanosleep): Avoid referencing unitialized
	memory.

svn path=/trunk/mono/; revision=141183
  • Loading branch information
kumpera committed Sep 2, 2009
1 parent 79436b9 commit 1eb1c2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions support/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2009-09-02 Rodrigo Kumpera <[email protected]>

* time.c (Mono_Posix_Syscall_nanosleep): Avoid referencing unitialized
memory.

2009-08-23 Gonzalo Paniagua Javier <[email protected]>

* deflate.c:
Expand Down
2 changes: 1 addition & 1 deletion support/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ int
Mono_Posix_Syscall_nanosleep (struct Mono_Posix_Timespec *req,
struct Mono_Posix_Timespec *rem)
{
struct timespec _req, _rem, *prem;
struct timespec _req, _rem, *prem = NULL;
int r;

if (req == NULL) {
Expand Down

0 comments on commit 1eb1c2e

Please sign in to comment.