Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
bcb7f4ee
Commit
bcb7f4ee
authored
Feb 19, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fix for native USER.
parent
431cf324
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
atom.c
memory/atom.c
+2
-1
No files found.
memory/atom.c
View file @
bcb7f4ee
...
...
@@ -245,7 +245,6 @@ ATOM WINAPI AddAtom16( LPCSTR str )
int
len
,
ae_len
;
WORD
iatom
;
if
(
CURRENT_DS
==
ATOM_UserDS
)
return
GlobalAddAtomA
(
str
);
if
(
ATOM_IsIntAtomA
(
str
,
&
iatom
))
return
iatom
;
TRACE
(
"%s
\n
"
,
debugstr_a
(
buffer
));
...
...
@@ -255,6 +254,8 @@ ATOM WINAPI AddAtom16( LPCSTR str )
len
=
strlen
(
buffer
);
if
(
!
(
table
=
ATOM_GetTable
(
TRUE
)))
return
0
;
if
(
CURRENT_DS
==
ATOM_UserDS
)
return
GlobalAddAtomA
(
str
);
hash
=
ATOM_Hash
(
table
->
size
,
buffer
,
len
);
entry
=
table
->
entries
[
hash
];
while
(
entry
)
...
...
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