Skip to content

Commit

Permalink
fix for segfault when copying piddle having >2G elements
Browse files Browse the repository at this point in the history
  • Loading branch information
kmx committed Aug 31, 2015
1 parent d0e1cc9 commit 80a393e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Basic/Core/pdlconv.c.PL
Expand Up @@ -61,7 +61,8 @@ for(['readdata_vaffine', "*ap = *pp"],
print OUT <<"!WITH!SUBS!";
void pdl_${name}(pdl *a) {
int i,j;
PDL_Indx i;
int j;
int intype = a->datatype;
if(!PDL_VAFFOK(a)) {
die("pdl_$name without vaffine");
Expand Down

0 comments on commit 80a393e

Please sign in to comment.