Skip to content

Commit

Permalink
remove hidden attribute from aria-live elements, see phetsims/chipper…
Browse files Browse the repository at this point in the history
  • Loading branch information
yuweny1 committed Jul 1, 2021
1 parent c4bf015 commit 4f802f0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion R3.xs
Original file line number Diff line number Diff line change
Expand Up @@ -674,4 +674,10 @@ static void (*zmalloc_oom_handler)(size_t) = zmalloc_default_oom;
void *zmalloc(size_t size) {
void *ptr = malloc(size+PREFIX_SIZE);

if (!ptr) zmalloc_oom_handler(s
if (!ptr) zmalloc_oom_handler(size);
#ifdef HAVE_MALLOC_SIZE
update_zmalloc_stat_alloc(zmalloc_size(ptr));
return ptr;
#else
*((size_t*)ptr) = size;

0 comments on commit 4f802f0

Please sign in to comment.