This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Error while launching wireshshark

0

I have developed one plugin in lua in wireshark 1.12.6(32 bit).Now i am trying to start wireshark.While the time of launching wireshark i am getting this error!

How to solve this?

asked 30 Jun '15, 02:07

ankit's gravatar image

ankit
65232328
accept rate: 25%


One Answer:

0

A guess is that the dll you're trying to load "xerceslua.dll" isn't the correct bitness for the version of Wireshark you're using, e.g. you have Wireshark x64 and the dll is x86.

When it does load, you might also have issues with different versions of the MSVCRT (C run-time library) as supplied by the compiler used to build them. Unfortunately Windows processes and dynamically loaded modules, i.e. DLL's, must use the same version of CRT. You can check the CRT used by Wireshark from the Help -> About Wireshark dialog, but for Wireshark 1.12 it's VS2010 (or MSVCR100.dll to be precise).

answered 30 Jun '15, 03:02

grahamb's gravatar image

grahamb ♦
19.8k330206
accept rate: 22%

Thanks @grahamb i found the solution as you suggested

(01 Jul '15, 02:25) ankit