Commit 2a37f3e0 authored by Olivier Bertrand's avatar Olivier Bertrand

- Fix a bug causing a crash when using OEM tables based on BIN tables.

modified:
  storage/connect/reldef.cpp
parent 4fd74200
......@@ -304,7 +304,7 @@ PTDB OEMDEF::GetTable(PGLOBAL g, MODE mode)
else
txfp = new(g) DOSFAM(defp);
} else if (rfm == RECFM_FIX || rfm == RECFM_FIX) {
} else if (rfm == RECFM_FIX || rfm == RECFM_BIN) {
if (map)
txfp = new(g) MPXFAM(defp);
else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment