• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

firtst release


コミットメタ情報

リビジョンabc4ffaa3c1ee18ada2443f99ca48e43540af7b2 (tree)
日時2013-12-09 11:52:28
作者Shigeru HANADA <shigeru.hanada@gmai...>
コミッターShigeru HANADA

ログメッセージ

Silence compiler warning about uninitialized variable.

変更サマリ

差分

--- a/make_join_rel.c
+++ b/make_join_rel.c
@@ -27,7 +27,8 @@
2727 static double
2828 adjust_rows(double rows, RowsHint *hint)
2929 {
30- double result;
30+ double result = 0.0; /* keep compiler quiet */
31+
3132 if (hint->value_type == RVT_ABSOLUTE)
3233 result = hint->rows;
3334 else if (hint->value_type == RVT_ADD)
@@ -42,6 +43,7 @@ adjust_rows(double rows, RowsHint *hint)
4243 hint->base.state = HINT_STATE_USED;
4344 result = clamp_row_est(result);
4445 elog(DEBUG1, "adjusted rows %d to %d", (int) rows, (int) result);
46+
4547 return result;
4648 }
4749