#At file:///home/hakan/work/mysql/mysql-6.0-falcon-team/ based on revid:vvaintroub@stripped90109164106-nh276beysfv3u6wc
2964 Hakan Kuecuekyilmaz 2009-01-09
Fixed gcc warning:
storage/falcon/Table.cpp: 506
‘record’ may be used uninitialized in this function
modified:
storage/falcon/Table.cpp
per-file messages:
storage/falcon/Table.cpp
storage/falcon/Table.cpp: 506
‘record’ may be used uninitialized in this function
=== modified file 'storage/falcon/Table.cpp'
--- a/storage/falcon/Table.cpp 2009-01-08 15:48:59 +0000
+++ b/storage/falcon/Table.cpp 2009-01-09 21:26:02 +0000
@@ -503,7 +503,7 @@ Record* Table::fetchNext(int32 start)
Stream stream;
Sync sync(&syncObject, "Table::fetchNext");
sync.lock(Shared);
- Record *record;
+ Record *record = NULL;
int32 recordNumber = start;
for (;;)
| Thread |
|---|
| • bzr commit into mysql-6.0-falcon-team branch (hky:2964) | Hakan Kuecuekyilmaz | 9 Jan |