Merge pull request #2819 from BrzVlad/fix-major-log
[mono.git] / mono / metadata / rand.c
index eff2fff9851ced44e2155b2bd269729170ad6316..87d2d104790dceb6272299c34f19911ceb362615 100644 (file)
@@ -8,11 +8,13 @@
  *
  * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
  * Copyright 2004-2009 Novell, Inc (http://www.novell.com)
+ * Licensed under the MIT license. See LICENSE file in the project root for full license information.
  */
 
 #include <glib.h>
 
 #include "object.h"
+#include "object-internals.h"
 #include "rand.h"
 #include "utils/mono-rand.h"
 
@@ -32,8 +34,10 @@ ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngInitialize (M
 gpointer
 ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_RngGetBytes (gpointer handle, MonoArray *arry)
 {
+       MonoError error;
        g_assert (arry);
-       mono_rand_try_get_bytes (&handle, mono_array_addr (arry, guchar, 0), mono_array_length (arry));
+       mono_rand_try_get_bytes (&handle, mono_array_addr (arry, guchar, 0), mono_array_length (arry), &error);
+       mono_error_set_pending_exception (&error);
        return handle;
 }