/src/FreeRDP/client/common/geometry.c
Line | Count | Source (jump to first uncovered line) |
1 | | /** |
2 | | * FreeRDP: A Remote Desktop Protocol Implementation |
3 | | * Geometry tracking Virtual Channel Extension |
4 | | * |
5 | | * Copyright 2017 David Fort <contact@hardening-consulting.com> |
6 | | * |
7 | | * Licensed under the Apache License, Version 2.0 (the "License"); |
8 | | * you may not use this file except in compliance with the License. |
9 | | * You may obtain a copy of the License at |
10 | | * |
11 | | * http://www.apache.org/licenses/LICENSE-2.0 |
12 | | * |
13 | | * Unless required by applicable law or agreed to in writing, software |
14 | | * distributed under the License is distributed on an "AS IS" BASIS, |
15 | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
16 | | * See the License for the specific language governing permissions and |
17 | | * limitations under the License. |
18 | | */ |
19 | | |
20 | | #include <freerdp/config.h> |
21 | | |
22 | | #include <freerdp/client/geometry.h> |
23 | | #include <winpr/interlocked.h> |
24 | | |
25 | | void mappedGeometryRef(MAPPED_GEOMETRY* g) |
26 | 0 | { |
27 | 0 | InterlockedIncrement(&g->refCounter); |
28 | 0 | } |
29 | | |
30 | | void mappedGeometryUnref(MAPPED_GEOMETRY* g) |
31 | 0 | { |
32 | 0 | if (!g) |
33 | 0 | return; |
34 | | |
35 | 0 | if (InterlockedDecrement(&g->refCounter)) |
36 | 0 | return; |
37 | | |
38 | 0 | g->MappedGeometryUpdate = NULL; |
39 | 0 | g->MappedGeometryClear = NULL; |
40 | 0 | g->custom = NULL; |
41 | 0 | free(g->geometry.rects); |
42 | 0 | free(g); |
43 | 0 | } |