Commit 63159655 authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bug #33840

parent f00d889f
......@@ -1607,6 +1607,16 @@ CChangesParagraphPrChange.prototype.ReadFromBinary = function(Reader)
// Variable(CReviewInfo) : Old.ReviewInfo (4bit = 0)
var nFlags = Reader.GetLong();
this.New = {
PrChange : undefined,
ReviewInfo : undefined
};
this.Old = {
PrChange : undefined,
ReviewInfo : undefined
};
if (nFlags & 1)
{
this.New.PrChange = undefined;
......
......@@ -2013,6 +2013,16 @@ CChangesRunPrChange.prototype.ReadFromBinary = function(Reader)
// Variable(CReviewInfo) : Old.ReviewInfo (4bit = 0)
var nFlags = Reader.GetLong();
this.New = {
PrChange : undefined,
ReviewInfo : undefined
};
this.Old = {
PrChange : undefined,
ReviewInfo : undefined
};
if (nFlags & 1)
{
this.New.PrChange = undefined;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment