Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
5d483a67
Kaydet (Commit)
5d483a67
authored
Şub 05, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
lokdocview: fix memory leak in lcl_payloadToRectangle()
Change-Id: I2894c693d11b025d23ebbf0ae75f67532efe315f
üst
4b707104
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
11 deletions
+14
-11
lokdocview.c
libreofficekit/source/gtk/lokdocview.c
+14
-11
No files found.
libreofficekit/source/gtk/lokdocview.c
Dosyayı görüntüle @
5d483a67
...
...
@@ -330,24 +330,27 @@ static GdkRectangle lcl_payloadToRectangle(const char* pPayload)
{
GdkRectangle
aRet
;
gchar
**
ppCoordinates
;
gchar
**
ppCoordinate
;
aRet
.
width
=
aRet
.
height
=
aRet
.
x
=
aRet
.
y
=
0
;
ppCoordinates
=
g_strsplit
(
pPayload
,
", "
,
4
);
if
(
!*
ppCoordinates
)
ppCoordinate
=
ppCoordinates
;
if
(
!*
ppCoordinate
)
return
aRet
;
aRet
.
width
=
atoi
(
*
ppCoordinate
s
);
++
ppCoordinate
s
;
if
(
!*
ppCoordinate
s
)
aRet
.
width
=
atoi
(
*
ppCoordinate
);
++
ppCoordinate
;
if
(
!*
ppCoordinate
)
return
aRet
;
aRet
.
height
=
atoi
(
*
ppCoordinate
s
);
++
ppCoordinate
s
;
if
(
!*
ppCoordinate
s
)
aRet
.
height
=
atoi
(
*
ppCoordinate
);
++
ppCoordinate
;
if
(
!*
ppCoordinate
)
return
aRet
;
aRet
.
x
=
atoi
(
*
ppCoordinate
s
);
++
ppCoordinate
s
;
if
(
!*
ppCoordinate
s
)
aRet
.
x
=
atoi
(
*
ppCoordinate
);
++
ppCoordinate
;
if
(
!*
ppCoordinate
)
return
aRet
;
aRet
.
y
=
atoi
(
*
ppCoordinates
);
aRet
.
y
=
atoi
(
*
ppCoordinate
);
g_strfreev
(
ppCoordinates
);
return
aRet
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment