File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
* Fix a crash related to FPRSessionDetails. (#8691 )
3
+ * Fix heap-buffer overflow when encoding sessions. (#8849 )
3
4
4
5
# Version 8.8.0
5
6
* Create a random number of delay for remote config fetch during app starts.
6
7
* Fix log spamming when Firebase Performance is disabled. (#8423 , #8577 )
7
- * Fix heap-heap- buffer overflow when decoding strings. (#8628 )
8
+ * Fix heap-buffer overflow when decoding strings. (#8628 )
8
9
9
10
# Version 8.6.1
10
11
* Fix the case where the event were dropped for missing a critical field in the event.
Original file line number Diff line number Diff line change @@ -184,12 +184,12 @@ static firebase_perf_v1_NetworkConnectionInfo_MobileSubtype FPRCellularNetworkTy
184
184
perfSessions[perfSessionIndex].session_verbosity_count = 0 ;
185
185
if ((session.options & FPRSessionOptionsEvents) ||
186
186
(session.options & FPRSessionOptionsGauges)) {
187
+ perfSessions[perfSessionIndex].session_verbosity_count = 1 ;
187
188
perfSessions[perfSessionIndex].session_verbosity =
188
189
calloc (perfSessions[perfSessionIndex].session_verbosity_count ,
189
190
sizeof (firebase_perf_v1_SessionVerbosity));
190
191
perfSessions[perfSessionIndex].session_verbosity [0 ] =
191
192
firebase_perf_v1_SessionVerbosity_GAUGES_AND_SYSTEM_EVENTS;
192
- perfSessions[perfSessionIndex].session_verbosity_count = 1 ;
193
193
}
194
194
perfSessionIndex++;
195
195
}];
You can’t perform that action at this time.
0 commit comments