diff options
| author | liuxueli <[email protected]> | 2021-12-15 22:01:31 +0300 |
|---|---|---|
| committer | liuxueli <[email protected]> | 2021-12-15 22:01:31 +0300 |
| commit | 944bc77bd5dd27ad5ca8671351d56ef5b9bf5d47 (patch) | |
| tree | 26d81a7905687c4afdd414a21c1a1cb5bd48ba54 | |
| parent | 115d51912087d8eeb684b1345778e1043db2bd3b (diff) | |
修复满足条件时未执行新疆默认策略的问题v5.4.23
| -rw-r--r-- | src/tsg_entry.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tsg_entry.cpp b/src/tsg_entry.cpp index 1d5d39f..6136123 100644 --- a/src/tsg_entry.cpp +++ b/src/tsg_entry.cpp @@ -1644,7 +1644,8 @@ static unsigned char tsg_master_data_entry(const struct streaminfo *a_stream, vo { if(get_default_policy(g_tsg_para.default_compile_id, &scan_result[0])) { - p_result=&scan_result[0]; + hit_num=1; + p_result=&scan_result[0]; } } |
