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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy