diff --git a/irdb-libs/libIRDB-core/include/archdesc.hpp b/irdb-libs/libIRDB-core/include/archdesc.hpp index d1a98ba67a6bcf9d974fdd2b3ce42d3ac1b23bdd..21822401f1f0542c197837e2cf8b3a5a43f8a98e 100644 --- a/irdb-libs/libIRDB-core/include/archdesc.hpp +++ b/irdb-libs/libIRDB-core/include/archdesc.hpp @@ -29,8 +29,15 @@ class ArchitectureDescription_t : virtual public IRDB_SDK::ArchitectureDescripti { public: - virtual ~ArchitectureDescription_t() {} - ArchitectureDescription_t() : bits(0), ft(IRDB_SDK::adftNone), mt(IRDB_SDK::admtNone) {} + virtual ~ArchitectureDescription_t() { } + ArchitectureDescription_t() + : + bits(0), + ft(IRDB_SDK::adftNone), + mt(IRDB_SDK::admtNone), + file_base(0) + { + } int getBitWidth() const { return bits; } void setBitWidth(const int _bits) { bits=_bits; } diff --git a/tools/ps_analyze.sh b/tools/ps_analyze.sh index 22254af900e0943ad26876ffc9b76eecdf539331..dbe9c0fa5e951e9a8b0b657d202b26067749553d 100755 --- a/tools/ps_analyze.sh +++ b/tools/ps_analyze.sh @@ -901,12 +901,12 @@ do_plugins() # if this step is a stop before/after step, do it special, so we exit early. if [[ $stepname == $stop_before_step ]] || [[ $stepname == $stop_after_step ]]; then # just run the step now. - perform_step $stepname none "$plugin_path/thanos.exe --no-redirect "$thanos_plugins"" + perform_step $stepname none "$PEASOUP_HOME/irdb-libs/plugins_install/thanos.exe --no-redirect "$thanos_plugins"" thanos_steps="" thanos_plugins="" elif [[ $stepname == $dump_before_step ]] || [[ $stepname == $dump_after_step ]]; then # just run the step now. - perform_step $stepname none "$plugin_path/thanos.exe "$thanos_plugins"" + perform_step $stepname none "$PEASOUP_HOME/irdb-libs/plugins_install/thanos.exe "$thanos_plugins"" thanos_steps="" thanos_plugins="" fi