[test/blob] Fix bug in test
authorBehdad Esfahbod <behdad@behdad.org>
Tue, 10 May 2011 21:48:34 +0000 (17:48 -0400)
committerBehdad Esfahbod <behdad@behdad.org>
Tue, 10 May 2011 21:48:34 +0000 (17:48 -0400)
test/test-blob.c

index 91c1170..22d40b7 100644 (file)
@@ -157,7 +157,8 @@ fixture_init (fixture_t *fixture, gconstpointer user_data)
       break;
 
     case HB_MEMORY_MODE_WRITABLE:
-      data = strndup (test_data, sizeof (test_data));
+      data = malloc (sizeof (test_data));
+      memcpy ((char *) data, test_data, sizeof (test_data));
       len = sizeof (test_data);
       free_func = (hb_destroy_func_t) free_up_free;
       break;