Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit bad250f

Browse files
committed
Use correct sizeof operand in qsort call
Probably no practical impact, since all pointers ought to have the same size, but it was wrong nonetheless. Found by Coverity.
1 parent c9f310d commit bad250f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/adt/tsrank.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ SortAndUniqItems(TSQuery q, int *size)
175175
if (*size < 2)
176176
return res;
177177

178-
qsort_arg(res, *size, sizeof(QueryOperand **), compareQueryOperand, (void *) operand);
178+
qsort_arg(res, *size, sizeof(QueryOperand *), compareQueryOperand, (void *) operand);
179179

180180
ptr = res + 1;
181181
prevptr = res;

0 commit comments

Comments
 (0)