Skip to content

Commit

Permalink
[pdq] Fix initialization flag in php (#1517)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianwal authored Jan 22, 2024
1 parent e996d25 commit e469ada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdq/php/ext/pdq/impl/pdqhashing.c
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ static float* fill_dct_matrix_64_cached() {
cos((M_PI / 2 / 64.0) * (i+1) * (2 * j + 1));
}
}
initialized = false;
initialized = true;
}
return &buffer[0];
}

0 comments on commit e469ada

Please sign in to comment.