Wireshark-bugs: [Wireshark-bugs] [Bug 10209] wireshark-1.12 rc2 (and git) on ARM - expert.c:392:

Date: Sat, 21 Jun 2014 20:17:11 +0000

changed bug 10209

What Removed Added
CC   [email protected]

Comment # 6 on bug 10209 from
Hi,

- I think the best would be to kill optimization, and just do:

  expert_add_info -> 
    expert_add_info_format(..., "%s", eiinfo->summary);

  proto_tree_add_expert ->
    proto_tree_add_expert_format(..., "%s", eiinfo->summary);


- Or modify a little bit attachment #12828 [details] and change

from:
  va_list unused;
to:
  static va_list unused;

- Or pass not a va_list, but pointer to va_list (where for sure can be passed
NULL).

Cheers,
Jakub.


You are receiving this mail because:
  • You are watching all bug changes.