Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 592588
Collapse All | Expand All

(-)fbreader/src/formats/doc/OleStorage.cpp (-1 / +1 lines)
Lines 59-65 Link Here
59
		clear();
59
		clear();
60
		return false;
60
		return false;
61
	}
61
	}
62
	static const char OLE_SIGN[] = {0xD0, 0xCF, 0x11, 0xE0, 0xA1, 0xB1, 0x1A, 0xE1, 0};
62
	static const char OLE_SIGN[] = {(char)0xD0, (char)0xCF, (char)0x11, (char)0xE0, (char)0xA1, (char)0xB1, (char)0x1A, (char)0xE1, 0};
63
	if (std::strncmp(oleBuf, OLE_SIGN, 8) != 0) {
63
	if (std::strncmp(oleBuf, OLE_SIGN, 8) != 0) {
64
		clear();
64
		clear();
65
		return false;
65
		return false;

Return to bug 592588