Merge "__cxa_finalize: skip fflush call on dlclose"
This commit is contained in:
commit
34bf6107b6
|
@ -186,7 +186,10 @@ restart:
|
|||
}
|
||||
_ATEXIT_UNLOCK();
|
||||
|
||||
fflush(NULL);
|
||||
/* If called via exit(), flush output of all open files. */
|
||||
if (dso == NULL) {
|
||||
fflush(NULL);
|
||||
}
|
||||
|
||||
/* BEGIN android-changed: call __unregister_atfork if dso is not null */
|
||||
if (dso != NULL) {
|
||||
|
|
Loading…
Reference in New Issue