Skip to content
This repository has been archived by the owner on Apr 8, 2022. It is now read-only.

Commit

Permalink
Added missing assert.
Browse files Browse the repository at this point in the history
  • Loading branch information
siavashserver committed Feb 20, 2018
1 parent 176da93 commit 470f68a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions neonrvm.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ extern lapack_int LAPACKE_dpotrs(int matrix_layout, char uplo, lapack_int n, lap
NEONRVM_STATIC void* nextend(void* mem_addr, size_t count, size_t size, bool keep_content)
{
if ((0 == count) || (0 == size) || (count > SIZE_MAX / size)) {
assert(0);
abort();
}

Expand Down

0 comments on commit 470f68a

Please sign in to comment.