Increase updater ui maximum text length to 400 to fix
Bug 628829 - Updater crashes when localized strings excess 200 utf-8 bytes, as bn-IN, kn, ml, and te do. r=mossop, a=LegNeato for release drivers
Increase updater ui maximum text length to 400 to fix
Bug 628829 - Updater crashes when localized strings excess 200 utf-8 bytes, as bn-IN, kn, ml, and te do. r=mossop, a=LegNeato for release drivers
--- a/toolkit/mozapps/update/src/updater/readstrings.h
+++ b/toolkit/mozapps/update/src/updater/readstrings.h
@@ -35,17 +35,17 @@
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#ifndef READSTRINGS_H__
#define READSTRINGS_H__
-#define MAX_TEXT_LEN 200
+#define MAX_TEXT_LEN 400
#ifdef XP_WIN
# include <windows.h>
typedef WCHAR NS_tchar;
#else
typedef char NS_tchar;
#endif