diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-03-19 13:47:46 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-03-19 13:47:46 +0100 |
commit | 0d39366e2ce9f7a23d47ae1191371ff305a08eb0 (patch) | |
tree | 0093dadd88b796f71361599402bccbfc4c8024de /kernel | |
parent | 71de6660036c7cea95884554382bc2913af36252 (diff) | |
parent | 9f10acb84042ce0943c3b4d1234efa3899f0dff1 (diff) | |
download | yosys-0d39366e2ce9f7a23d47ae1191371ff305a08eb0.tar.gz yosys-0d39366e2ce9f7a23d47ae1191371ff305a08eb0.tar.bz2 yosys-0d39366e2ce9f7a23d47ae1191371ff305a08eb0.zip |
Merge branch 'hansiglaser-master'
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/register.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/register.cc b/kernel/register.cc index ebb834c8f..a61548b64 100644 --- a/kernel/register.cc +++ b/kernel/register.cc @@ -132,7 +132,7 @@ void Pass::extra_args(std::vector<std::string> args, size_t argidx, RTLIL::Desig void Pass::call(RTLIL::Design *design, std::string command) { std::vector<std::string> args; - char *s = strdup(command.c_str()), *saveptr; + char *s = strdup(command.c_str()), *sstart = s, *saveptr; s += strspn(s, " \t\r\n"); if (*s == 0 || *s == '#') return; @@ -160,7 +160,7 @@ void Pass::call(RTLIL::Design *design, std::string command) } else args.push_back(str); } - free(s); + free(sstart); call(design, args); } |