Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbad250f

Browse files
committed
Use correct sizeof operand in qsort call
Probably no practical impact, since all pointers ought to have thesame size, but it was wrong nonetheless. Found by Coverity.
1 parentc9f310d commitbad250f

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
returnres;
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)

[8]ページ先頭

©2009-2025 Movatter.jp