Skip to content
Snippets Groups Projects
Commit 9e859dd1 authored by Howard Chu's avatar Howard Chu
Browse files

ITS#8831 move flag init into readhdr

Avoid stomping on flags from 1st readhr invocation
parent 3b01bbbc
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,7 @@ static void readhdr(void)
{
char *ptr;
flags = 0;
while (fgets(dbuf.mv_data, dbuf.mv_size, stdin) != NULL) {
lineno++;
if (!strncmp(dbuf.mv_data, "VERSION=", STRLENOF("VERSION="))) {
......@@ -374,7 +375,6 @@ int main(int argc, char *argv[])
while(!Eof) {
MDB_val key, data;
int batch = 0;
flags = 0;
if (!dohdr) {
dohdr = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment